/* style/support.css */
.page-support {
    font-family: 'Arial', sans-serif;
    color: #FFFFFF; /* Default text color for dark sections */
    line-height: 1.6;
    background-color: #002244; /* Slightly darker background for overall page */
}

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

.page-support__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #003366 0%, #001a33 100%); /* Dark blue gradient */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-support__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

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

.page-support__hero-description {
    font-size: 1.2em;
    color: #E0E0E0;
    margin-bottom: 30px;
}

.page-support__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    overflow: hidden;
    z-index: 1;
}

.page-support__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.page-support__section-title {
    font-size: 2.5em;
    color: #FFCC00;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 20px;
    font-weight: bold;
}

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

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

.page-support__btn--primary {
    background-color: #FFCC00; /* Gold button */
    color: #003366;
    font-size: 1.1em;
}

.page-support__btn--primary:hover {
    background-color: #e6b800;
}

.page-support__btn--secondary {
    background-color: #004d99; /* Darker blue button */
    color: #FFFFFF;
    border: 1px solid #FFCC00;
}

.page-support__btn--secondary:hover {
    background-color: #003366;
    border-color: #e6b800;
}

/* FAQs Section */
.page-support__faqs {
    padding: 60px 0;
    background-color: #003366; /* Main blue background */
}

.page-support__faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.page-support__faq-item {
    background-color: #004488; /* Slightly lighter blue for FAQ items */
    border-radius: 8px;
    overflow: hidden;
}

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

.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 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    color: #E0E0E0;
    padding: 0 25px;
}

.page-support__faq-answer.open {
    max-height: 200px; /* Adjust as needed */
    padding: 15px 25px 25px;
}

.page-support__faq-answer p {
    margin: 0;
}

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

.page-support__contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-support__contact-item {
    background-color: #003366;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.page-support__contact-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 204, 0, 0.7));
}

.page-support__contact-title {
    font-size: 1.8em;
    color: #FFCC00;
    margin-bottom: 10px;
}

.page-support__contact-text {
    color: #CCCCCC;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Resources Section */
.page-support__resources {
    padding: 60px 0;
    background-color: #003366;
}

.page-support__resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.page-support__resource-card {
    background-color: #004488;
    padding: 25px;
    border-radius: 8px;
    text-decoration: none;
    color: #FFFFFF;
    transition: transform 0.3s ease, background-color 0.3s ease;
    display: block;
    height: 100%;
}

.page-support__resource-card:hover {
    transform: translateY(-5px);
    background-color: #0055aa;
}

.page-support__resource-title {
    font-size: 1.5em;
    color: #FFCC00;
    margin-bottom: 10px;
}

.page-support__resource-description {
    color: #E0E0E0;
    font-size: 0.95em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-support__hero {
        padding: 60px 15px;
    }

    .page-support__hero-title {
        font-size: 2.5em;
    }

    .page-support__hero-description {
        font-size: 1em;
    }

    .page-support__section-title {
        font-size: 2em;
    }

    .page-support__contact-grid, .page-support__resource-grid {
        grid-template-columns: 1fr;
    }

    .page-support__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }

    .page-support__faq-answer.open {
        padding: 10px 20px 20px;
    }
}

@media (max-width: 480px) {
    .page-support__hero-title {
        font-size: 2em;
    }

    .page-support__section-title {
        font-size: 1.8em;
    }

    .page-support__btn {
        padding: 10px 20px;
        font-size: 1em;
    }
}