/* Impact Page Styles */

.commitment-section {
    padding: 6rem 0;
    background: var(--dark-gray);
}

.commitment-content {
    max-width: 900px;
    margin: 0 auto;
}

.commitment-content h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2rem;
}

.commitment-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.commitment-content .lead-text {
    font-size: 1.25rem;
}

.impact-areas-section {
    padding: 6rem 0 8rem;
    background: var(--black);
}

.areas-intro {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.impact-areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.impact-area-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(26, 153, 128, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition);
}

.impact-area-card:hover {
    transform: translateY(-8px);
    border-color: var(--teal);
    box-shadow: 0 10px 40px rgba(26, 153, 128, 0.3);
}

.area-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.impact-area-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.impact-area-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.area-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.example-tag {
    background: rgba(26, 153, 128, 0.15);
    border: 1px solid rgba(26, 153, 128, 0.4);
    color: var(--teal);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Partner NGOs Section */
.partner-ngos-section {
    padding: 6rem 0;
    background: var(--dark-gray);
}

.ngos-intro {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.ngos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.ngo-placeholder {
    background: rgba(255, 255, 255, 0.02);
    border: 2px dashed rgba(26, 153, 128, 0.3);
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition);
}

.ngo-placeholder:hover {
    border-color: rgba(26, 153, 128, 0.6);
}

.ngo-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.ngo-placeholder p {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.ngo-placeholder span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

.ngo-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(26, 153, 128, 0.2);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
}

.ngo-card:hover {
    border-color: var(--teal);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(26, 153, 128, 0.2);
}

.partner-logo {
    max-width: 180px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 1.5rem;
    display: block;
    filter: grayscale(1) brightness(1.5);
    transition: var(--transition);
}

.ngo-card:hover .partner-logo {
    filter: grayscale(0) brightness(1);
}

.ngo-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.ngo-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Transparency Section */
.transparency-section {
    padding: 6rem 0;
    background: var(--black);
}

.transparency-box {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(26, 153, 128, 0.15) 0%, rgba(26, 153, 128, 0.05) 100%);
    border: 2px solid var(--teal);
    border-radius: 20px;
    padding: 4rem 3rem;
    text-align: center;
}

.transparency-box h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2rem;
}

.transparency-box p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.transparency-box p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 968px) {
    .impact-areas-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ngos-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .impact-areas-grid {
        grid-template-columns: 1fr;
    }

    .impact-area-card {
        padding: 2rem;
    }

    .transparency-box {
        padding: 3rem 2rem;
    }

    .area-examples {
        flex-direction: column;
    }

    .example-tag {
        text-align: center;
    }
}

