@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;600;700;800&family=Roboto:wght@300;400;500;700&display=swap');

:root {
    --universe-blue: #4F6FBD;
    --sky-blue: #57A2F8;
    --zuki-yellow: #FFE089;
    --moonlight: #F7F2E5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #333;
}

h1, h2, h3 {
    font-family: 'Figtree', sans-serif;
}

.gradient-header {
    background: linear-gradient(135deg, var(--universe-blue) 0%, var(--sky-blue) 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.logo {
    max-width: 150px;  /* was 200px */
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.gradient-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.gradient-header p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

nav {
    background: white;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}

nav a {
    margin: 0 20px;
    color: var(--universe-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--sky-blue);
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.card {
    background: var(--moonlight);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--universe-blue);
}

.card h3 {
    color: var(--universe-blue);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.feature {
    text-align: center;
    padding: 25px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: var(--sky-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
}

.cta {
    background: var(--zuki-yellow);
    padding: 50px 20px;
    text-align: center;
    margin-top: 50px;
}

.cta h2 {
    color: var(--universe-blue);
    margin-bottom: 20px;
}

footer {
    background: var(--universe-blue);
    color: white;
    padding: 30px 20px;
    text-align: center;
}

footer a {
    color: var(--zuki-yellow);
    text-decoration: none;
}

@media (max-width: 768px) {
    .mission-vision {
        grid-template-columns: 1fr;
    }
    .gradient-header h1 {
        font-size: 2rem;
    }
}