/* =================================
ENVIRONMENTAL PROTECTION
================================= */

.env-section {
    padding: 90px 8%;
    background: #f9f9f9;
}

.env-container {
    max-width: 1200px;
    margin: auto;
}

.env-header {
    text-align: center;
    margin-bottom: 60px;
}

.env-header h2 {
    font-size: 38px;
    color: #b11226;
    margin-bottom: 15px;
}

.env-header p {
    font-size: 18px;
    max-width: 750px;
    margin: auto;
    line-height: 1.7;
}

.env-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.env-card {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.6s ease;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.env-card.show {
    opacity: 1;
    transform: translateY(0);
}

.env-icon {
    font-size: 28px;
    color: #b11226;
    margin-bottom: 15px;
}

.env-card p {
    font-size: 16px;
    line-height: 1.7;
}


/* =================================
CONTACT SECTION
================================= */

.program-contact {
    padding: 80px 10%;
    background: white;
    color: black;
    text-align: center;
}

.program-contact-container {
    max-width: 800px;
    margin: auto;
}

.program-contact h2 {
    font-size: 34px;
    margin-bottom: 20px;
}

.program-contact p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 35px;
}

.program-emails {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.email-btn {
    display: inline-block;
    padding: 12px 25px;
    margin: 10px;
    background: #b11226;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s;
}

.email-btn i {
    margin-right: 8px;
}

.email-btn:hover {
    background: #7a0c18;
    color: white;
}


/* =================================
MOBILE RESPONSIVE
================================= */

@media (max-width:992px) {
    .env-section {
        padding: 60px 5%;
    }
    .env-header h2 {
        font-size: 28px;
    }
    .env-header p {
        font-size: 16px;
        max-width: 100%;
    }
    .env-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .env-card {
        padding: 20px;
    }
    .env-icon {
        font-size: 24px;
        margin-bottom: 12px;
    }
    .env-card p {
        font-size: 15px;
        line-height: 1.6;
    }
    .program-contact {
        padding: 50px 5%;
    }
    .program-contact h2 {
        font-size: 24px;
    }
    .program-contact p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 25px;
    }
    .program-emails {
        flex-direction: column;
        gap: 15px;
    }
    .email-btn {
        width: 100%;
        text-align: center;
        padding: 12px 0;
    }
}