body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f2f5;
    color: #333;
    line-height: 1.6;
    text-align: center;
}

nav {
    background-color: #1a73e8;
    padding: 0.5em 1em;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    min-height: 60px;
}

nav[role="navigation"] {
    position: relative;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    font-size: 1.5em;
    color: white;
    cursor: pointer;
    position: absolute;
    top: 0.5em;
    left: 1em;
    padding: 0.5em;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    z-index: 1001;
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.nav-toggle-label span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    margin: 4px 0;
    transition: transform 0.3s ease, opacity 0.2s ease;
    transform-origin: center;
}

.nav-toggle-label[aria-expanded="true"] ~ #nav-menu {
    display: flex;
}

.nav-toggle-label[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle-label[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle-label[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: max-height 0.3s ease;
}

nav ul li {
    margin: 0 1.2em;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5em 1em;
    display: block;
    transition: color 0.3s, background-color 0.3s;
}

nav ul li a:hover {
    color: #1a73e8;
    background-color: #d1e7ff;
    border-radius: 4px;
}

header {
    background-color: #1a73e8;
    color: white;
    padding: 2em 1em;
    margin-bottom: 1.5em;
}

main {
    margin-top: 60px;
}

h1 {
    margin: 0;
    font-size: 2.5em;
    font-weight: 700;
}

h2 {
    font-size: 2em;
    color: #1a73e8;
    margin-bottom: 1em;
}

h3 {
    font-size: 1.3em;
    color: #333;
    margin-bottom: 0.5em;
    padding: 0.3em;
    background: #e9ecef;
    border-radius: 4px;
}

.rentals-container, .reviews-container, .bundles-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1em;
}

.row {
    margin-bottom: 1.5em;
}

.slider-container {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 400px;
    padding: 0.8em;
    box-sizing: border-box;
}

.slide img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s;
}

.slide img:hover {
    transform: scale(1.05);
}

.desc {
    text-align: left;
    width: 100%;
}

.desc p {
    margin: 0.3em 0;
    font-size: 0.9em;
    color: #555;
    font-weight: 500;
}

.desc .features {
    font-size: 0.8em;
    color: #666;
    line-height: 1.3;
    font-style: italic;
}

#contact {
    max-width: 600px;
    margin: 2em auto;
    padding: 1.5em;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#contact h2 {
    color: #1a73e8;
    margin-bottom: 1em;
}

#contact p {
    margin-bottom: 1em;
    font-size: 1em;
}

#contact input, #contact textarea {
    margin: 0.5em 0;
    padding: 0.6em;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
    width: 100%;
    box-sizing: border-box;
}

#contact button {
    padding: 0.6em 1.2em;
    background-color: #1a73e8;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s;
}

#contact button:hover {
    background-color: #1557b0;
}

footer {
    background-color: #333;
    color: white;
    padding: 1em;
    text-align: center;
    width: 100%;
    margin-top: 1.5em;
}

footer p a {
    color: #d1e7ff;
    margin: 0 0.5em;
    text-decoration: none;
}

footer p a:hover {
    text-decoration: underline;
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    border-radius: 6px;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 25px;
    color: white;
    font-size: 1.8em;
    cursor: pointer;
}

/* Swiper Styles */
.swiper {
    width: 100%;
    height: 400px;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

/* Reviews Section */
.reviews-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1em;
}

.review {
    background: #fff;
    padding: 1em;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    text-align: left;
}

/* Bundles Section */
.bundles-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1em;
}

.bundle {
    background: #fff;
    padding: 1em;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    text-align: left;
}

.bundle h3 {
    margin: 0 0 0.5em 0;
    color: #1a73e8;
}

/* Gallery Section */
.mySwiper-gallery {
    height: 500px;
}

.mySwiper-gallery .swiper-slide img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 6px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle-label {
        display: flex;
    }

    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        margin: 0 auto;
        background-color: #1a73e8;
        padding: 0.5em 0;
        max-height: 70vh;
        overflow-y: auto;
        border-radius: 4px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        text-align: center;
    }

    .nav-toggle-label[aria-expanded="true"] ~ #nav-menu {
        display: flex;
    }

    .nav-toggle-label:active ~ #nav-menu {
        display: flex;
    }

    nav ul li {
        margin: 0.3em 0;
        width: 100%;
    }

    nav ul li a {
        padding: 0.5em;
    }

    header {
        padding: 1em;
    }

    h1 {
        font-size: 1.5em;
    }

    h2 {
        font-size: 1.5em;
    }

    h3 {
        font-size: 1em;
    }

    .slide {
        height: 300px;
        padding: 0.6em;
    }

    .slide img {
        width: 120px;
        height: 120px;
    }

    .desc p {
        font-size: 0.75em;
    }

    .desc .features {
        font-size: 0.65em;
    }

    .reviews-container, .bundles-container {
        flex-direction: column;
        align-items: center;
    }

    .review, .bundle {
        max-width: 100%;
    }

    #contact {
        padding: 0.8em;
    }

    #contact input, #contact textarea {
        padding: 0.4em;
        font-size: 0.8em;
    }

    #contact button {
        padding: 0.4em 0.8em;
        font-size: 0.8em;
    }

    .mySwiper-gallery {
        height: 300px;
    }

    .mySwiper-gallery .swiper-slide img {
        height: 250px;
    }
}

@media (min-width: 769px) {
    .swiper {
        cursor: grab;
    }

    .swiper:hover {
        cursor: grab;
    }

    .nav-toggle-label {
        display: none;
    }

    nav ul {
        display: flex;
    }

    nav ul li a:hover {
        background-color: #d1e7ff;
    }
}