/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
}

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


/* Header Container */
.headerContainer {
    margin: 0 auto;
    display: flex;
    width: 90%;
    justify-content: space-between;
    padding: 2rem;
}

/* Left Header */
.leftHeader {
    display: flex;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.logo img {
    width: 5rem;
    height: 5rem;
}
.logo h1 {
    margin: 0;
    font-size: 3rem;
    font-weight: 700;
    color: #2c5530;
}

/* Right Header */
.rightHeader {
    display: flex;
    gap: 4rem;
}
.headerAction {
    gap: 1rem;
    display: flex;
    align-items: center;
}
.headerAction p {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    color: #2c5530;
}


/* FAQ Page Specific Styles */
.faq-page-container {
    background: white;
    height: 75vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    justify-content: center;
}

.faq-header {
    display: flex;
    align-items: center;
    gap: 3rem;
    text-align: center;
}

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

.faq-container {
    max-width: 60vw;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    border-radius: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.faq-question {
    background: #f8f9fa;
    overflow: hidden;
    color: #333;
    padding: 3rem 2rem 3rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.faq-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: #666;
    font-weight: normal;
}

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

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

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

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

.faq-answer p {
    color: #555;
    line-height: 2;
    margin: 2rem;
    font-size: 1.5rem;
    overflow: hidden;
}
