body {
    margin: 0;
    font-family: 'SF Pro Display', sans-serif;
    line-height: 1.6;
    color: #333;
}

.hero {
    background: url('https://images.unsplash.com/photo-1519821172143-7fd91fc53bfa?auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
    height: 100vh;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: rgba(0, 0, 0, 0.4);
}

nav .logo {
    height: 50px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.hero-text {
    padding-bottom: 100px;
}

.hero-text h1 {
    font-size: 3rem;
}

.section {
    padding: 3rem 2rem;
    max-width: 900px;
    margin: auto;
}

.section.light {
    background: #f9f9f9;
}

footer {
    text-align: center;
    padding: 1rem;
    background: #222;
    color: white;
    font-size: 0.9rem;
}


.slider {
    position: relative;
    overflow: hidden;
    height: 100vh;
}

.slides {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 1s ease-in-out;
}

.slide {
    width: 100%;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
}

.hero-text {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
}
