/* GET INVOLVED PAGE */

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero/hero2.jpg') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 6rem 1rem;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.involve-section {
    margin-bottom: 4rem;
}

.involve-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.involve-card:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.involve-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.involve-content {
    padding: 2rem;
}

.involve-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.involve-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .involve-card {
        grid-template-columns: 1fr;
    }

    .involve-card:nth-child(even) {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.faq-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}