
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
    font-family: Arial, sans-serif;
}

body {
    background-color: #f4f4f9; 
    color: #333;
    line-height: 1.6;
}

.section-padding {
    padding: 60px 10%;
    text-align: center;
}

h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #004d99; 
}

h3 {
    margin-bottom: 10px;
    color: #555;
}

.intro-text {
    font-size: 1.1em;
    margin-bottom: 40px;
}

hr {
    border: 0;
    height: 1px;
    background-color: #ccc;
    margin: 20px 10%;
}


header {
    background-color: #004d99; 
    color: white;
    padding: 15px 10%;
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
    padding: 5px 0;
}

nav ul li a:hover {
    color: #ffcc00; 
    border-bottom: 2px solid #ffcc00;
}


.card-container {
    display: flex;
    justify-content: space-around; 
    gap: 20px; 
    flex-wrap: wrap; 
}

.card {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 30%; 
    min-width: 280px; 
    transition: transform 0.3s;
    text-align: left;
}

.card:hover {
    transform: translateY(-5px); 
}

.car-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
    max-height: 180px;
    object-fit: cover; 
}


.info-box {
    background-color: white;
    padding: 20px;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    text-align: left;
    border-left: 5px solid #ffcc00; 
}

.info-box p {
    margin-bottom: 8px;
    font-size: 1em;
}


.location-map {
    background-color: #ccc;
    padding: 50px 20px;
    margin: 20px auto;
    max-width: 800px;
    border-radius: 10px;
    text-align: center;
    font-size: 1.2em;
    font-weight: bold;
    color: #666;
}


footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 40px;
    font-size: 0.9em;
}

@media (max-width: 768px) {
    .card {
        width: 100%;
        margin-bottom: 20px;
    }

    header {
        flex-direction: column;
    }

    nav ul {
        margin-top: 10px;
    }

    nav ul li {
        margin: 0 10px;
    }
}