/* style/support.css */
.page-support {
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    background-color: #f5f5f5; /* Light background for readability, body is default light */
    color: #333333;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

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

/* Hero Section */
.page-support__hero-section {
    background-color: #1A202C;
    color: #ffffff;
    text-align: center;
    padding: 60px 20px 0;
    position: relative;
    overflow: hidden;
}

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

.page-support__hero-title {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-support__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.page-support__hero-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A202C;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-bottom: 40px;
}

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

.page-support__hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 30px;
}

.page-support__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    min-width: 200px;
    min-height: 200px;
}

/* Section Titles and Descriptions */
.page-support__section-title {
    font-size: 2.5em;
    color: #1A202C;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.page-support__section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #FFD700;
    margin: 10px auto 0;
    border-radius: 2px;
}

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

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

.page-support__faq-list {
    margin-top: 30px;
}

.page-support__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-support__faq-question {
    font-size: 1.2em;
    color: #1A202C;
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.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;
}

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

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

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

.page-support__faq-answer a:hover {
    color: #FFD700;
}

.page-support__button {
    display: inline-block;
    background-color: #1A202C;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease;
    margin-top: 30px;
}

.page-support__button:hover {
    background-color: #FFD700;
    color: #1A202C;
}

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

.page-support__button--secondary:hover {
    background-color: #1A202C;
    color: #ffffff;
}

/* Contact Section */
.page-support__contact-section {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.page-support__contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 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.1);
    padding: 30px;
    text-align: center;
    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(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-support__card-image {
    width: 200px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
}

.page-support__card-title {
    font-size: 1.8em;
    color: #1A202C;
    margin-bottom: 10px;
}

.page-support__card-description {
    font-size: 1em;
    color: #666666;
    margin-bottom: 20px;
    flex-grow: 1;
}

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

.page-support__cta-section .page-support__section-title {
    color: #FFD700;
}

.page-support__cta-section .page-support__section-title::after {
    background-color: #ffffff;
}

.page-support__cta-section .page-support__section-description {
    color: #f0f0f0;
}

.page-support__cta-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-support__cta-buttons .page-support__button {
    margin-top: 0;
}

.page-support__button--primary {
    background-color: #FFD700;
    color: #1A202C;
}

.page-support__button--primary:hover {
    background-color: #e6c200;
    color: #1A202C;
}

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

.page-support__cta-buttons .page-support__button--secondary:hover {
    background-color: #ffffff;
    color: #1A202C;
}

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

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

@media (max-width: 768px) {
    .page-support__hero-section {
        padding-top: var(--header-offset, 80px);
    }

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

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

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

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

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

    .page-support__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-support__hero-image,
    .page-support__card-image {
        max-width: 100%;
        height: auto;
    }
}

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

    .page-support__hero-button {
        padding: 12px 25px;
        font-size: 1em;
    }

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

    .page-support__faq-question {
        font-size: 1em;
    }

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

    .page-support__button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}