body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f7f9fc;
    color: #333;
}

header.hero {
    background: linear-gradient(to right, #00b4d8, #0077b6);
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 20px;
}

.btn {
    background-color: #ffcb05;
    color: #333;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease;
}

.btn:hover {
    background-color: #ffda4a;
}

.section {
    padding: 60px 20px;
    text-align: center;
}

.section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.section p {
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.locations {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.location-box {
    background-color: #ffffff;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    text-align: left;
}

.location-box h3 {
    margin-bottom: 10px;
    color: #0077b6;
}

.location-box p {
    line-height: 1.6;
}

.car-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.car-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.car-card:hover {
    transform: translateY(-5px);
}

.car-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.car-card h3 {
    margin: 16px 0 8px;
    font-size: 20px;
}

.car-card p {
    margin-bottom: 16px;
    color: #0077b6;
    font-weight: bold;
}

footer {
    background-color: #0077b6;
    color: white;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}

.wa-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    padding: 12px 18px;
    border-radius: 50px;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: 0.3s ease;
}

.wa-btn:hover {
    background-color: #1ebe5b;
}
.map-container {
    margin-top: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: 0;
    display: block;
}
