/* HERO */
.hero {
    background: linear-gradient(135deg, #4c1d95, #7c3aed);
    padding: 6rem 2rem;
    text-align: center;
    color: #fff;
}
.hero-inner h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.hero-tagline {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}
.hero-btn {
    background: #fbbf24;
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

/* SECTION TITLES */
section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

/* MISSION */
.mission {
    padding: 4rem 2rem;
}
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}
.mission-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* CONTENT GRIDS */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
}
.content-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.content-card h3 a {
    text-decoration: none;
    color: #4c1d95;
}
