.carousel {
    position: relative;
    width: 100%;
    height: 24rem;
}

.carousel-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-item {
    display: none;
    width: 100%;
    height: 100%;
}

.carousel-item.active {
    display: block;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

button {
    transition: all 0.3s ease;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: 500;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .carousel {
        height: 16rem;
    }

    nav ul {
        flex-direction: column;
        space-x-0;
        space-y-2;
        text-align: center;
    }

    nav ul li {
        margin: 0.5rem 0;
    }
}