:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --card-bg: #11271B;
    --background: #08160F;
    --text-main: #F2FFF6;
    --text-secondary: #A7D9B8;
    --border: #2E7A4E;
    --glow: #57E38D;
    --gold: #F2C14E;
    --divider: #1E3A2A;
    --deep-green: #0A4B2C;
}

/* Base styles for the FAQ page */
.page-faq {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--background);
}

/* Hero Section */
.page-faq__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    text-align: center;
    background-color: var(--background);
}

.page-faq__hero-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 30px; /* Space between image and content */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-faq__hero-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
    padding: 20px;
    background-color: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 40px;
}

.page-faq__main-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

.page-faq__hero-description {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* General Section Styling */
.page-faq__section {
    padding: 60px 20px;
    background-color: var(--background);
    border-bottom: 1px solid var(--divider);
}

.page-faq__section:last-of-type {
    border-bottom: none;
}

.page-faq__section-title {
    font-size: clamp(24px, 3.5vw, 40px);
    font-weight: 700;
    color: var(--gold);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
}

.page-faq__sub-title {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 600;
    color: var(--text-main);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-faq__content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.page-faq__text-block {
    flex: 1;
    min-width: 300px;
    color: var(--text-main);
}

.page-faq__text-block p {
    margin-bottom: 15px;
    font-size: 17px;
    color: var(--text-secondary);
}

.page-faq__text-block strong.page-faq__highlight {
    color: var(--gold);
    font-weight: 700;
}

.page-faq__image {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-faq__ordered-list {
    list-style: decimal;
    margin-left: 25px;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.page-faq__ordered-list li {
    margin-bottom: 10px;
    font-size: 17px;
}

.page-faq__ordered-list li strong {
    color: var(--text-main);
}

/* FAQ Specific Styles */
.page-faq__faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.page-faq__faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-faq__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-main);
    background-color: var(--deep-green);
    border-bottom: 1px solid var(--divider);
    list-style: none;
}

.page-faq__faq-question::-webkit-details-marker {
    display: none;
}

.page-faq__faq-question:hover {
    background-color: var(--primary-color);
}

.page-faq__faq-qtext {
    flex-grow: 1;
}

.page-faq__faq-toggle {
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.page-faq__faq-item[open] .page-faq__faq-toggle {
    transform: rotate(45deg);
}

.page-faq__faq-answer {
    padding: 20px 25px;
    font-size: 16px;
    color: var(--text-secondary);
    background-color: var(--card-bg);
    border-top: 1px solid var(--divider);
}

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

/* Call to Action Button */
.page-faq__cta-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: none;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-faq__btn-primary {
    background: var(--button-gradient);
    color: #ffffff;
}

.page-faq__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-faq__btn-large {
    padding: 18px 40px;
    font-size: 20px;
}

.page-faq__cta-final {
    text-align: center;
    padding-bottom: 80px;
}

.page-faq__cta-wrapper {
    flex-direction: column;
    gap: 30px;
}

.page-faq__cta-text {
    font-size: clamp(16px, 2vw, 19px);
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: var(--text-secondary);
}

.page-faq__link {
    color: var(--glow);
    text-decoration: none;
    font-weight: 600;
}

.page-faq__link:hover {
    text-decoration: underline;
    color: var(--gold);
}

/* Responsive styles */
@media (min-width: 768px) {
    .page-faq__hero-section {
        flex-direction: row; /* Image and text side-by-side on desktop */
        text-align: left;
        padding-top: 60px;
    }

    .page-faq__hero-content-wrapper {
        text-align: left;
        margin-right: 40px;
        margin-bottom: 0;
    }

    .page-faq__hero-image {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .page-faq__content-wrapper {
        justify-content: space-between;
    }

    .page-faq__text-block {
        flex: 1;
        max-width: calc(50% - 20px);
    }

    .page-faq__image {
        flex-shrink: 0;
    }

    .page-faq__why-aw8 .page-faq__content-wrapper .page-faq__image {
        order: 2;
    }
    .page-faq__registration-guide .page-faq__content-wrapper .page-faq__image {
        order: 1;
    }
    .page-faq__useful-tips .page-faq__content-wrapper .page-faq__image {
        order: 2;
    }
}

@media (max-width: 768px) {
    .page-faq__section {
        padding: 40px 15px;
    }

    .page-faq__hero-section {
        flex-direction: column-reverse;
        padding: 30px 15px;
        padding-top: 10px !important;
    }
    .page-faq__hero-image {
        margin-top: 20px;
    }

    .page-faq__hero-content-wrapper {
        padding: 15px;
        margin-bottom: 20px;
    }

    .page-faq__main-title {
        font-size: 26px;
    }

    .page-faq__hero-description {
        font-size: 16px;
    }

    .page-faq__section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .page-faq__sub-title {
        font-size: 22px;
        margin-top: 25px;
    }

    .page-faq__text-block,
    .page-faq__image {
        min-width: 100%;
        max-width: 100%;
    }

    .page-faq__content-wrapper {
        gap: 20px;
    }

    /* Mobile image responsive override */
    .page-faq img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-faq__section,
    .page-faq__card,
    .page-faq__container,
    .page-faq__hero-section,
    .page-faq__hero-content-wrapper,
    .page-faq__content-wrapper,
    .page-faq__faq-container,
    .page-faq__faq-item,
    .page-faq__cta-final,
    .page-faq__cta-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden;
    }

    /* Video section top padding on mobile */
    .page-faq__video-section {
        padding-top: 10px !important;
    }

    /* Mobile button responsive override */
    .page-faq__cta-button,
    .page-faq__btn-primary,
    .page-faq__btn-secondary,
    .page-faq a[class*="button"],
    .page-faq a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-faq__cta-buttons,
    .page-faq__button-group,
    .page-faq__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
    }

    .page-faq__cta-buttons {
        flex-direction: column;
    }
}