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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* Header & Navigation */
header {
    background-color: #7DC4B8;
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: -1rem;
}

.logo img {
    height: 60px;
    width: auto;
    border-radius: 8px;
    background-color: #f4f4f4;
    padding: 0.25rem;
}

.logo-text {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: white;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #3498db;
}

/* Hero Section */
.hero {
    background-color: #f4f4f4;
    padding: 0;
    text-align: center;
}

.hero-banner {
    max-width: 100%;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 6;
    margin: 0 auto;
    background-image: url('images/banner.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    max-width: 800px;
    margin: 2rem auto 0;
}

.hero h1 {
    font-family: 'Fredoka', sans-serif;
    font-size: 3rem;
    margin: 0;
    letter-spacing: 1px;
    font-weight: 400;
    color: black;
}

/* Program Boxes */
.program-boxes {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.program-box {
    background: #f4f4f4;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.program-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.program-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.program-icon svg {
    color: #A5A0D6;
    width: 160px;
    height: 160px;
}

.program-icon img {
    width: 400px;
    height: auto;
}

.program-icon h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: #2c3e50;
    margin: 0;
}

.learn-more {
    font-family: 'Fredoka', sans-serif;
    color: #7DC4B8;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.2rem;
    padding: 0.75rem 2rem;
    border: 2px solid #7DC4B8;
    border-radius: 25px;
    transition: all 0.3s;
}

.learn-more:hover {
    background-color: #7DC4B8;
    color: white;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.content-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-section {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.info-section h2 {
    font-family: 'Fredoka', sans-serif;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 500;
}

.info-section p {
    color: #555;
    line-height: 1.8;
}

.cta-button {
    margin-top: 1rem;
    padding: 0.8rem 2rem;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #2980b9;
}

/* Service Cards */
.service-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.card h3 {
    font-family: 'Fredoka', sans-serif;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 500;
}

.card p {
    color: #555;
    margin-bottom: 1rem;
}

.plans-list {
    list-style: none;
    margin-bottom: 1rem;
}

.plans-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.plans-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.card-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.card-link:hover {
    color: #2980b9;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .program-boxes {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .main-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .logo {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .hero {
        padding: 1rem;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .program-boxes {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }

    .program-icon img {
        width: 300px;
    }

    .program-icon svg {
        width: 128px;
        height: 128px;
    }

    .main-content {
        padding: 0 1rem;
    }
}
