/* General Styles */
body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
}

/* Carousel */
.carousel {
    position: relative;
}
.carousel-item {
    display: none;
}
.carousel-item:first-child {
    display: block;
}

/* Custom Button */
.custom-button {
    background-color: #4CAF50;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.custom-button:hover {
    background-color: #45a049;
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        space-y-4;
    }
    .carousel {
        height: 300px;
    }
    .grid-cols-1 {
        grid-template-columns: 1fr;
    }
}