/* Media Queries for Responsive Design */
@media screen and (max-width: 768px) {
    .slideshow-container {
        max-width: 100%;
    }
    
    .slide img {
        height: auto;
        aspect-ratio: 2/3;
    }

    .nav-container {
        flex-direction: column;
        padding: 10px;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
    }

    nav ul li {
        width: 100%;
        text-align: center;
    }

    .service-item {
        min-width: 100%;
    }

    .hero-banner h2 {
        font-size: 2em;
    }
}

@media screen and (max-width: 480px) {
    header h1 {
        font-size: 2em;
    }

    .slide-content h3 {
        font-size: 1.5em;
    }

    .slide-content p {
        font-size: 1em;
    }
}