
html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
}

header {
    background-color: #4caf50;
    color: white;
    padding: 20px;
    text-align: center;
}

nav {
    margin-top: 15px;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

.hero {
    text-align: center;
    padding: 60px 20px;
    background-color: white;
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 20px;
    color: #666;
    max-width: 700px;
    margin: auto;
    margin-bottom: 30px;
}

button {
    padding: 15px 30px;
    background-color: #4caf50;
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background-color: #43a047;
    transform: scale(1.05);
}

.about {
    padding: 50px;
}

.hero-image {
    width: 80%;
    max-width: 700px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.programs {
    padding: 50px;
    text-align: center;
}

.cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    background: white;
    padding: 20px;
    width: 250px;
    border-radius: 10px;
    box-shadow: 0px 2px 10px rgba(0,0,0,0.1);
}

.contact {
    background-color: #4caf50;
    color: white;
    padding: 50px;
    text-align: center;
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
}

.contact-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #4caf50;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s;
}

.contact-button:hover {
    background-color: #43a047;
    transform: scale(1.05);
}

@media (max-width: 768px) {

    nav a {
        display: block;
        margin: 10px 0;
    }

    .hero h2 {
        font-size: 32px;
    }

    .cards {
        flex-direction: column;
        align-items: center;
    }
}

.features {
    padding: 50px;
    text-align: center;
    background-color: white;
}

.features ul {
    list-style: none;
    padding: 0;
}

.features li {
    margin: 15px 0;
    font-size: 18px;
}

section {
    padding-top: 50px;
    padding-bottom: 50px;
}

.slider {
    position: relative;
    max-width: 700px;
    margin: 0 auto 30px auto;
    overflow: hidden;
    border-radius: 12px;
}

.slide {
    display: none;
    position: relative;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    display: block;
}

.label {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    
    background: rgba(80, 80, 80, 0.75);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
}

.prev { left: 10px; }
.next { right: 10px; }

.prev:hover, .next:hover {
    background: rgba(0,0,0,0.6);
}