/* style/support.css */
.page-support {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

.page-support__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-support__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.page-support__button--primary {
    background-color: #007BFF; /* Main color */
    color: #ffffff;
}

.page-support__button--primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.page-support__button--secondary {
    background-color: #FFC107; /* Accent color */
    color: #333333; /* Ensure high contrast */
    border: 1px solid #FFC107;
}

.page-support__button--secondary:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
}

.page-support__button--inline {
    padding: 8px 15px;
    font-size: 0.9em;
    margin-top: 10px;
}

/* Hero Section */
.page-support__hero {
    background: linear-gradient(135deg, #007BFF, #0056b3);
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-support__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:support,abstract,pattern]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-support__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    color: #ffffff;
}

.page-support__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    color: #e0e0e0;
}

.page-support__hero-actions .page-support__button {
    margin: 0 10px;
    position: relative;
    z-index: 1;
}

/* Section Titles */
.page-support__section-title {
    font-size: 2.5em;
    color: #007BFF;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 60px;
    font-weight: 700;
}

.page-support__section-subtitle {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ Section */
.page-support__faq-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.page-support__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-support__faq-item {
    background-color: #f0f8ff; /* Light blue background for items */
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-support__faq-question {
    width: 100%;
    background-color: #007BFF; /* Primary color for question */
    color: #ffffff;
    padding: 18px 25px;
    font-size: 1.15em;
    font-weight: bold;
    text-align: left;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-support__faq-question:hover {
    background-color: #0056b3;
}

.page-support__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-support__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-support__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: #fdfdfd;
    color: #444;
}

.page-support__faq-answer.active {
    max-height: 500px; /* Adjust as needed */
    padding: 20px 25px;
}

.page-support__faq-answer p {
    margin-bottom: 15px;
}

/* Contact Methods Section */
.page-support__contact-methods {
    padding: 60px 0;
    background-color: #f0f8ff; /* Light blue background */
}

.page-support__contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-support__contact-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-support__contact-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.1));
}

.page-support__contact-title {
    font-size: 1.8em;
    color: #007BFF;
    margin-bottom: 15px;
}

.page-support__contact-description {
    color: #666;
    margin-bottom: 25px;
}

/* CTA Section */
.page-support__cta-section {
    padding: 80px 0;
    background: linear-gradient(90deg, #007BFF, #FFC107);
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-support__cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,pattern]') no-repeat center center/cover;
    opacity: 0.15;
    z-index: 0;
}

.page-support__cta-section .page-support__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.page-support__cta-image {
    max-width: 150px;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}

.page-support__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: 700;
    color: #ffffff;
}

.page-support__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 700px;
    color: #e0e0e0;
}

.page-support__cta-actions .page-support__button {
    margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-support__hero-title {
        font-size: 2.5em;
    }
    .page-support__hero-description {
        font-size: 1.1em;
    }
    .page-support__section-title {
        font-size: 2em;
    }
    .page-support__cta-title {
        font-size: 2em;
    }
    .page-support__contact-grid {
        grid-template-columns: 1fr;
    }
    .page-support__hero-actions, .page-support__cta-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-support__hero-actions .page-support__button, .page-support__cta-actions .page-support__button {
        margin: 0;
        width: 80%;
    }
}

@media (max-width: 480px) {
    .page-support__hero-title {
        font-size: 2em;
    }
    .page-support__section-title {
        font-size: 1.8em;
    }
    .page-support__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-support__contact-card {
        padding: 20px;
    }
    .page-support__cta-title {
        font-size: 1.8em;
    }
    .page-support__cta-description {
        font-size: 1em;
    }
}