.page-support {
    color: #333333; /* Default text color for light body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

.page-support__hero-section {
    background-color: #003366; /* Main brand color */
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden; /* Ensure image doesn't overflow */
}

.page-support__hero-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-support__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFCC00; /* Auxiliary color for emphasis */
    font-weight: bold;
}

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

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

.page-support__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    min-width: 180px;
    text-align: center;
}

.page-support__button--primary {
    background-color: #FFCC00; /* Auxiliary color */
    color: #003366; /* Main brand color */
    border: 2px solid #FFCC00;
}

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

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

.page-support__button--secondary:hover {
    background-color: #FFCC00;
    color: #003366;
}

.page-support__button--small {
    padding: 10px 20px;
    font-size: 1em;
    min-width: 120px;
}

.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__section-title {
    font-size: 2.5em;
    color: #003366;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

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

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

.page-support__faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.page-support__faq-list {
    display: grid;
    gap: 20px;
}

.page-support__faq-item {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.page-support__faq-question {
    font-size: 1.3em;
    color: #003366;
    padding: 20px;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #e0eaf3; /* Lighter shade of main color */
    border-bottom: 1px solid #cce0f0;
}

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

.page-support__faq-item.active .page-support__faq-question::after {
    transform: rotate(45deg);
}

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

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

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

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

/* Contact Options Section */
.page-support__contact-options-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.page-support__contact-options-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.page-support__contact-card {
    background-color: #f0f8ff; /* Very light blue */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 51, 102, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-support__contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 51, 102, 0.15);
}

.page-support__contact-icon {
    width: 200px; /* Min size for images */
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 5px;
}

.page-support__card-title {
    font-size: 1.8em;
    color: #003366;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-support__card-description {
    font-size: 1em;
    color: #555555;
    margin-bottom: 25px;
    flex-grow: 1; /* Allow description to take available space */
}

/* Resources Section */
.page-support__resources-section {
    padding: 60px 20px;
    background-color: #f2f7fc; /* Light blue background */
}

.page-support__resources-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.page-support__resource-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-support__resource-image {
    width: 100%;
    height: 250px; /* Consistent height for resource images */
    object-fit: cover;
    display: block;
    border-bottom: 1px solid #eee;
}

.page-support__resource-card h3 {
    padding: 20px;
    font-size: 1.4em;
    margin: 0;
}

.page-support__resource-card h3 a {
    color: #003366;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-support__resource-card h3 a:hover {
    color: #FFCC00;
}

.page-support__resource-description {
    padding: 0 20px 20px;
    color: #555555;
    font-size: 0.95em;
}

/* Call to Action Section */
.page-support__cta-section {
    background-color: #003366; /* Main brand color */
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.page-support__cta-container {
    max-width: 900px;
    margin: 0 auto;
}

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

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

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

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-support__hero-title {
        font-size: 2.8em;
    }
    .page-support__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-support {
        padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile */
    }
    .page-support__hero-section {
        padding: 60px 15px;
    }
    .page-support__hero-title {
        font-size: 2.2em;
    }
    .page-support__hero-description {
        font-size: 1em;
    }
    .page-support__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-support__button {
        width: 100%;
        max-width: 300px;
    }
    .page-support__section-title {
        font-size: 1.8em;
    }
    .page-support__section-subtitle {
        font-size: 0.95em;
    }
    .page-support__faq-question {
        font-size: 1.1em;
    }
    .page-support__contact-grid,
    .page-support__resources-grid {
        grid-template-columns: 1fr;
    }
    .page-support__contact-icon,
    .page-support__resource-image {
        max-width: 100%;
        height: auto; /* Ensure images scale down */
    }
    /* Ensure content area images don't overflow */
    .page-support img {
        max-width: 100%;
        height: auto;
    }
    .page-support__cta-title {
        font-size: 2.2em;
    }
    .page-support__cta-description {
        font-size: 1em;
    }
}

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