
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #2c3e50, #4ca1af);
    color: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background: #1abc9c;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
}

.logo h1 {
    margin: 0;
    font-size: 1.5em;
}

nav {
    display: flex;
    gap: 10px;
    transition: transform 0.3s ease;
}

nav a {
    text-decoration: none;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    background: #16a085;
    transition: background 0.3s;
}

nav a:hover {
    background: #148f77;
}

.hamburger {
    display: none;
    font-size: 1.8em;
    cursor: pointer;
    background: none;
    border: none;
    color: inherit;
    padding: 10px;
}

#navbar.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    background: #1abc9c;
    width: 100%;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

#navbar a {
    text-align: center;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    nav {
        display: none;
    }

    nav.open {
        display: flex;
    }
}

.hero {
    text-align: center;
    padding: 50px 20px;
}

.hero h2 {
    font-size: 3em;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.cards {
    display: flex;
    gap: 20px;
    padding: 40px 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    background: #34495e;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

.card h3 {
    margin: 0 0 10px;
}

.card p {
    font-size: 1em;
    line-height: 1.6;
}

.carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
    width: 100%;
}

.carousel-item {
    flex: 0 0 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #34495e;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-item.active {
    opacity: 1;
}

.carousel-item img {
    width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.carousel-content {
    max-width: 600px;
}

.carousel-content h3 {
    margin-bottom: 10px;
    font-size: 2em;
}

.carousel-content p {
    font-size: 1.2em;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .carousel-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .carousel-item img {
        width: 100%;
        max-width: 300px;
        margin-bottom: 15px;
    }

    .carousel-content {
        text-align: center;
        padding: 10px;
    }

    .carousel-content h3 {
        font-size: 1.5em;
    }

    .carousel-content p {
        font-size: 1em;
    }
}

footer {
    text-align: center;
    padding: 20px;
    background: #34495e;
    margin-top: auto;
}

footer p {
    margin: 0;
    font-size: 0.9em;
}

footer a {
    text-decoration: none;
}
