body {
    background-color: #f8f9fa;
    font-family: Arial, sans-serif;
}

.contact-section {
    padding: 50px 0;
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    color: #000;
}

.contact-form, .contact-info {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

textarea {
    height: 120px;
    resize: none;
}

.btn-success {
    background-color: #25D366;
    border: none;
}

.btn-success:hover {
    background-color: green;
}


/* Responsive Design */
@media (max-width: 768px) {
    .contact-form, .contact-info {
        margin-bottom: 20px;
    }
}
.map {
    width: 100%;
    max-width: 600px; /* Adjust max-width as needed */
    margin: auto;
    text-align: center;
}

.map h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.map iframe {
    width: 100%;
    height: 350px;
    border: 0;
}

@media (max-width: 768px) {
    .map iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .map iframe {
        height: 250px;
    }
}

