body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #fff;
    color: #333;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
}

.logo img {
    height: 150px;
}

nav a {
    text-decoration: none;
    margin-left: 15px;
    padding: 10px 16px;
    border: 1px solid #4c7ea3;
    color: #4c7ea3;
    border-radius: 4px;
}

nav a:hover {
    background: #4c7ea3;
    color: white;
}

.hero img {
    width: 100%;
    max-height: 840px;
    object-fit: cover;
}

.locations {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 20px;
    background: #0b5f7c;
    color: white;
    font-weight: bold;
}

.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #f4f4f4;
    text-align: center;
}

.footer p {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #555;
}

.facebook-icon img {
    width: 32px;
    height: 32px;
    transition: transform 0.2s ease;
}

.facebook-icon img:hover {
    transform: scale(1.1);
}

.social a {
    margin-left: 10px;
    text-decoration: none;
    color: #333;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    font-size: 28px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 999;
}

.whatsapp-float:hover {
    background: #1ebe5d;
}

.contact {
    padding: 40px;
    background: #f7f7f7;
    text-align: center;
}

.contact h2 {
    margin-bottom: 20px;
    color: #0b5f7c;
}

.contact form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

.contact input,
.contact textarea {
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
}

.contact textarea {
    min-height: 120px;
    resize: vertical;
}

.contact button {
    background: #0b5f7c;
    color: white;
    padding: 12px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
}

.contact button:hover {
    background: #094b61;
}

.coverage {
    padding: 40px;
    text-align: center;
}

.coverage h2 {
    color: #0b5f7c;
    margin-bottom: 10px;
}

.coverage-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    font-weight: bold;
}

.map-container {
    max-width: 1000px;
    margin: auto;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 8px;
}

.coverage-btn {
    display: inline-block;
    margin: 25px auto;
    padding: 14px 28px;
    background: #25d366;
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

.coverage-btn:hover {
    background: #1ebe5d;
}

@media (max-width: 768px) {
    .logo img {
        height: 70px;
    }
}
