header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #008ec2;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 5rem;
}

header .logo {
    height: 4rem;
    width: auto;
    display: block;
    object-fit: contain;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    padding-top: 1rem;
    color: #008ec2;
    background-color: #fff;

}

a {
    color: #008ec2;
    text-decoration: underline;
    cursor: pointer;
}

footer {
    text-align: center;
    padding: 2rem 1rem;
    font-size: 0.9rem;
    color: #008ec2;
    background-color: #fff;
}

#map {
    height: 400px;
    /* Set a fixed height for the map */
    width: 80%;
    /* Make it responsive within a width */
    max-width: 800px;
    /* Optional: maximum width for larger screens */
    margin: 2rem auto;
    /* Center the map horizontally and add spacing */
    border-radius: 8px;
    /* Optional: rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Optional: subtle shadow */
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #008ec2;
    background-color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 4px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.carousel-button:hover {
    opacity: 1;
}

.carousel-button.prev {
    left: 0;
}

.carousel-button.next {
    right: 0;
}


.cta-button {
    display: inline-block;
    background-color: #008ec2;
    color: #fff;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}


.reviews-section {
    padding: 3rem 1rem;
    background-color: #f9f9f9;
}

.review-carousel {
    max-width: 600px;
    margin: 2rem auto;
    position: relative;
    height: 100px;
    overflow: hidden;
}

.review {
    opacity: 0;
    display: none;
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
    transition: opacity 0.5s ease-in-out;
}

.review.active {
    opacity: 1;
    display: block;
}




.cta-button:hover {
    background-color: #333;
}

.icon {
    margin-right: 5px;
}

.nav-links a {
    margin-left: 1.5rem;
    text-decoration: none;
    color: #0077cc;
    font-weight: 500;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5rem 1rem 2rem;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 2rem;
}

.models {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: auto;
}

.model {
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding: 1rem;
    transition: transform 0.2s ease;
}


.model img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}



.locations-container {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Still centers the overall lines of items */
    gap: 20px; /* Space between items */
    padding: 10px;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.locations-container li {
    white-space: nowrap;
    flex-grow: 1;      /* Allows items to grow to fill available space */
    flex-basis: 0;     /* Sets initial size to 0 before growth, ensuring equal distribution */
    text-align: center; /* Centers the text within each item */
}

/* Optional: Media query for truly vertical stack on small screens */
@media (max-width: 480px) {
    .responsive-list {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    .responsive-list li {
        width: calc(100% - 20px); /* Account for padding/border */
        /* flex-grow: 1; flex-basis: auto; -- Reset for vertical stacking if needed */
    }
}


.legal-section {
    padding: 5rem 1rem 2rem;
    max-width: 800px;
    margin: auto;
    color: #333;
}