* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.navbar {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    background: #111;
    color: white;
    position: relative;
}

.logo img {
    height: 120px;
    width: auto;
    position: relative;
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 30px;
    font-size: 18px;
}

.hero {
    width: 100%;
}

.slideshow {
    width: 100%;
    height: 1000px;
    position: relative;
    overflow: hidden;
}

.slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px;
}

.text {
    max-width: 600px;
}

.text h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.text p {
    font-size: 18px;
    color: #444;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.buttons button {
    padding: 12px 30px;
    font-size: 16px;
    border: none;
    background: #222;
    color: white;
    cursor: pointer;
}

.buttons button:hover {
    background: #555;
}