/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
        Cantarell, sans-serif;
    line-height: 1.6;
    color: #333333;
    background: #ffffff;
    overflow-x: hidden;
}

/* Main Content */
main {
    min-height: calc(100vh - 200px);
    padding: 4rem 0;
}

/* FAQ Page Specific Styles */
.faq-page-container {
    background: white;
    width: 100%;
    max-width: 120rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    padding: 4rem 2rem;
}

.faq-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
    width: 100%;
}

.faq-header img {
    width: 8rem;
    height: 8rem;
    display: block;
}

.faq-header h1 {
    font-size: 4rem;
    font-weight: 700;
    color: #2c5530;
    letter-spacing: 0.1rem;
    margin: 0;
    text-transform: uppercase;
}

.giantIcon {
    width: 8rem;
    height: 8rem;
}

.faq-container {
    max-width: 90rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.faq-question {
    background: #f8f9fa;
    color: #333;
    padding: 2rem 3rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    text-align: left;
}

.faq-question:hover {
    background: #2c5530;
    color: white;
}

.faq-question.active {
    background: #2c5530;
    color: white;
}

.faq-arrow {
    font-size: 1.8rem;
    transition: transform 0.3s ease;
    color: #666;
    font-weight: normal;
    flex-shrink: 0;
    margin-left: 2rem;
}

.faq-question:hover .faq-arrow {
    color: white;
}

.faq-question.active .faq-arrow {
    transform: rotate(180deg);
    color: white;
}

.faq-answer {
    background: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer.active {
    max-height: 50rem;
}

.faq-answer p {
    color: #555;
    line-height: 1.8;
    margin: 0;
    padding: 2rem 3rem;
    font-size: 1.6rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .faq-container {
        max-width: 80rem;
    }
}

@media (max-width: 768px) {
    main {
        padding: 2rem 0;
    }

    .faq-page-container {
        padding: 3rem 1.5rem;
        gap: 3rem;
    }

    .faq-header {
        gap: 1.5rem;
    }

    .faq-header h1 {
        font-size: 3rem;
    }

    .faq-header img,
    .giantIcon {
        width: 6rem;
        height: 6rem;
    }

    .faq-question {
        padding: 1.5rem 2rem;
        font-size: 1.6rem;
    }

    .faq-arrow {
        font-size: 1.6rem;
        margin-left: 1rem;
    }

    .faq-answer p {
        padding: 1.5rem 2rem;
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .faq-page-container {
        padding: 2rem 1rem;
    }

    .faq-header h1 {
        font-size: 2.4rem;
    }

    .faq-header img,
    .giantIcon {
        width: 5rem;
        height: 5rem;
    }

    .faq-question {
        padding: 1.2rem 1.5rem;
        font-size: 1.4rem;
    }

    .faq-answer p {
        padding: 1.2rem 1.5rem;
        font-size: 1.3rem;
    }
}