/* support.css */

.page-support {
    color: #F3F8FF;
    background-color: #08162B; /* Deep Navy as base background */
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    padding-bottom: 20px; /* Add some padding at the bottom for spacing */
}

.page-support__section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #F3F8FF;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.page-support__section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #1D5FD1, #2B73F6);
    margin: 10px auto 0;
}

.page-support__section-description {
    color: #AFC4E8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 0 15px;
}

.page-support__cta-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
    color: #F3F8FF;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.2s ease;
    margin-top: 20px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.page-support__cta-button:hover {
    background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
    transform: translateY(-2px);
}

.page-support__cta-button--secondary {
    background: linear-gradient(180deg, #1D5FD1 0%, #113B7A 100%); /* Using main and aux colors for secondary */
}

.page-support__cta-button--secondary:hover {
    background: linear-gradient(180deg, #113B7A 0%, #1D5FD1 100%);
}

/* Hero Section */
.page-support__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 0 40px; /* Minimal top padding, relies on body padding-top */
    background-color: #113B7A; /* Main color for hero background */
    position: relative;
    overflow: hidden;
}

.page-support__hero-image-wrapper {
    width: 100%;
    max-height: 400px; /* Limit height to prevent image being too tall */
    overflow: hidden;
}

.page-support__hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

.page-support__hero-content {
    padding: 20px 15px;
    max-width: 900px;
    margin: 0 auto;
}

.page-support__main-title {
    color: #F3F8FF;
    font-size: clamp(2rem, 5vw, 3rem); /* Responsive H1 font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

.page-support__hero-description {
    color: #AFC4E8;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

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

.page-support__contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-support__contact-card {
    background-color: #10233F; /* Card BG */
    border: 1px solid #244D84; /* Border */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-support__contact-card img {
    width: 200px;
    height: 200px; /* Ensures min 200x200 display */
    object-fit: contain;
    margin-bottom: 20px;
    max-width: 100%; /* Ensure responsiveness */
}

.page-support__card-title {
    color: #F3F8FF;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.page-support__card-text {
    color: #AFC4E8;
    font-size: 0.95rem;
    flex-grow: 1;
    margin-bottom: 20px;
}

.page-support__card-button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
    color: #F3F8FF;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.page-support__card-button:hover {
    background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
}

/* FAQ Section */
.page-support__faq-section {
    padding: 60px 20px;
    background-color: #113B7A;
}

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

.page-support__faq-item {
    background-color: #10233F; /* Card BG */
    border: 1px solid #244D84; /* Border */
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 20px;
    transition: border-color 0.3s ease;
}

.page-support__faq-item:hover {
    border-color: #4FA8FF; /* Glow color on hover */
}

.page-support__faq-question {
    color: #F3F8FF;
    font-size: 1.25rem;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-support__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #4FA8FF;
    transition: transform 0.3s ease;
}

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

.page-support__faq-answer {
    color: #AFC4E8;
    font-size: 1rem;
    display: none; /* Hidden by default, JS will toggle */
    padding-top: 10px;
    border-top: 1px solid #1B3357; /* Divider */
    margin-top: 10px;
}

.page-support__faq-answer a {
    color: #4FA8FF;
    text-decoration: none;
}

.page-support__faq-answer a:hover {
    text-decoration: underline;
}

/* Commitment Section */
.page-support__commitment-section {
    padding: 60px 20px;
    background-color: #08162B;
    text-align: center;
}

.page-support__commitment-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto;
}

.page-support__commitment-item {
    background-color: #10233F; /* Card BG */
    border: 1px solid #244D84; /* Border */
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-support__commitment-item img {
    width: 200px;
    height: 200px; /* Ensures min 200x200 display */
    object-fit: contain;
    margin-bottom: 20px;
    max-width: 100%; /* Ensure responsiveness */
}

.page-support__item-title {
    color: #F3F8FF;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.page-support__item-text {
    color: #AFC4E8;
    font-size: 0.95rem;
}

/* Mobile responsiveness */
@media (max-width: 849px) {
    .page-support__hero-section {
        padding: 10px 0 30px;
    }

    .page-support__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

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

    .page-support__contact-grid,
    .page-support__commitment-points {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    .page-support__section-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }

    .page-support__faq-question {
        font-size: 1.1rem;
    }

    .page-support__faq-answer {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    /* Ensure content area images are responsive and don't overflow */
    .page-support img {
        max-width: 100%;
        height: auto;
    }

    .page-support__contact-card img,
    .page-support__commitment-item img {
        max-width: 100%; /* Override explicit width for smaller screens */
        height: auto;
        min-width: 200px; /* Enforce minimum display size for content images */
        min-height: 200px; /* Ensures compliance with 200x200 min size */
        object-fit: contain; /* Ensure it still fits */
    }
}

/* Ensure no image filter */
.page-support img {
    filter: none !important;
}