/* style/support.css */
.page-support {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #f0f0f0; /* Light text on dark background */
    background-color: #0A2342; /* Main background color */
}

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

/* Hero Section */
.page-support__hero {
    position: relative;
    background-color: #0A2342;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-support__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Subtle background image */
    z-index: 0;
}

.page-support__hero > .page-support__container {
    position: relative;
    z-index: 1;
}

.page-support__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-support__hero-description {
    font-size: 1.2em;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-support__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-support__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1.1em;
    border: none;
}

.page-support__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #0A2342; /* Dark blue text */
}

.page-support__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-support__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-support__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A2342;
    transform: translateY(-2px);
}

/* Section Titles and Descriptions */
.page-support__section-title {
    font-size: 2.8em;
    color: #FFD700;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-support__section-description {
    font-size: 1.1em;
    color: #e0e0e0;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
}

/* FAQ Section */
.page-support__faq {
    padding: 80px 0;
    background-color: #0A2342;
}

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

.page-support__faq-item {
    background-color: #1a3a5e; /* Slightly lighter dark blue */
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-support__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    padding: 20px 25px;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.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-question:hover {
    background-color: #2a4b70;
}

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

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

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

.page-support__faq-answer a {
    color: #FFD700;
    text-decoration: underline;
}

/* Contact Methods Section */
.page-support__contact-methods {
    padding: 80px 0;
    background-color: #0D2B4F; /* A slightly different dark blue */
}

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

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

.page-support__method-item:hover {
    transform: translateY(-10px);
}

.page-support__method-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700); /* Gold glow for icons */
}

.page-support__method-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-support__method-text {
    color: #e0e0e0;
    margin-bottom: 25px;
    min-height: 60px; /* Ensure consistent height */
}

.page-support__btn--outline {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    padding: 10px 20px;
    font-size: 1em;
}

.page-support__btn--outline:hover {
    background-color: #FFD700;
    color: #0A2342;
}

/* CTA Banner */
.page-support__cta-banner {
    position: relative;
    background-color: #0A2342;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-support__cta-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2; /* Subtle background image */
    z-index: 0;
}

.page-support__cta-banner > .page-support__container {
    position: relative;
    z-index: 1;
}

.page-support__cta-title {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-support__btn--gold {
    background-color: #FFD700;
    color: #0A2342;
    padding: 18px 40px;
    font-size: 1.2em;
    border-radius: 50px; /* Pill shape for prominent CTA */
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.page-support__btn--gold:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-support__hero-title {
        font-size: 3em;
    }
    .page-support__section-title {
        font-size: 2.2em;
    }
    .page-support__cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-support__hero {
        padding: 80px 0;
    }
    .page-support__hero-title {
        font-size: 2.5em;
    }
    .page-support__hero-description {
        font-size: 1em;
    }
    .page-support__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-support__btn {
        width: 80%;
        max-width: 300px;
    }
    .page-support__section-title {
        font-size: 2em;
        margin-top: 40px;
        margin-bottom: 15px;
    }
    .page-support__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }
    .page-support__faq {
        padding: 60px 0;
    }
    .page-support__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-support__faq-answer.active {
        max-height: 300px; /* Allow more height for mobile */
        padding: 15px 20px;
    }
    .page-support__contact-methods {
        padding: 60px 0;
    }
    .page-support__methods-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-support__method-item {
        padding: 25px;
    }
    .page-support__method-title {
        font-size: 1.5em;
    }
    .page-support__cta-banner {
        padding: 80px 0;
    }
    .page-support__cta-title {
        font-size: 2em;
    }
    .page-support__cta-description {
        font-size: 1em;
    }
    .page-support__btn--gold {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-support__hero {
        padding: 60px 0;
    }
    .page-support__hero-title {
        font-size: 2em;
    }
    .page-support__hero-description {
        font-size: 0.9em;
    }
    .page-support__btn {
        width: 90%;
    }
    .page-support__section-title {
        font-size: 1.8em;
    }
    .page-support__section-description {
        font-size: 0.9em;
    }
    .page-support__faq {
        padding: 40px 0;
    }
    .page-support__contact-methods {
        padding: 40px 0;
    }
    .page-support__cta-banner {
        padding: 60px 0;
    }
    .page-support__cta-title {
        font-size: 1.8em;
    }
    .page-support__cta-description {
        font-size: 0.9em;
    }
}