body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, #f4f4f9, #d1f7d1);
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.hero h1 {
    font-size: 3rem;
    color: #2d6a4f;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

.btn-register {
    font-size: 1.2rem;
    padding: 10px 20px;
    background-color: #2d6a4f;
    color: white;
    border-radius: 30px;
    text-decoration: none;
}

.btn-register:hover {
    background-color: #1b4332;
}

.image-slider {
    display: flex;
    overflow: hidden;
    width: 60%;
    margin: 20px auto;
}

.image-slider img {
    width: 100%;
    flex-shrink: 0;
    animation: slide 10s infinite;
}

@keyframes slide {
    0%, 20% { transform: translateX(0); }
    25%, 45% { transform: translateX(-100%); }
    50%, 70% { transform: translateX(-200%); }
    75%, 100% { transform: translateX(0); }
}
