/* ========= HOME PAGE SPECIFIC STYLES ========= */

/* Mission Section */
.mission-section {
    text-align: center;
    margin-bottom: 3rem;
}

.mission-text {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 1rem auto 0;
    color: #2c3e5c;
    line-height: 1.6;
}

/* 4 Pillars - Fixed to one row on desktop */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2rem 0 3rem;
}

@media (max-width: 1000px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .pillars-grid {
        grid-template-columns: 1fr;
    }
}

.pillar-card {
    background: white;
    border-radius: 1.5rem;
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    border-bottom: 4px solid var(--sky);
    transition: transform 0.2s, box-shadow 0.2s;
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
}

.pillar-card i {
    font-size: 2.5rem;
    color: var(--sky);
    margin-bottom: 1rem;
}

.pillar-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--navy);
}

.pillar-card p {
    color: #4a5a7a;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Call to Action */
.cta-section {
    text-align: center;
    margin-top: 2rem;
}

.cta-section .btn-outline {
    font-size: 1.1rem;
    padding: 12px 36px;
}