/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    padding: 40px 0;
}

/* Section Styling */
.contact-section {
    text-align: center;
    padding: 50px 0;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #212529;
}

.section-subtitle {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 30px;
}

/* Contact Wrapper */
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

/* Contact Details */
.contact-details {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.contact-details h3 {
    color: #0d6efd;
    margin-bottom: 10px;
}

.contact-details p {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
}

.contact-details ul {
    list-style-type: none;
    padding: 0;
}

.contact-details ul li {
    font-size: 14px;
    padding: 5px 0;
}

/* Contact Form */
.contact-form {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.contact-form h3 {
    color: #0d6efd;
    margin-bottom: 10px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.contact-form button {
    width: 100%;
    padding: 10px;
    background-color: #0d6efd;
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #0b5ed7;
}

/* Google Map */
.map-container {
    margin-top: 30px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.map-container h3 {
    color: #0d6efd;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
    }
}

.contact-details a {
    color: inherit !important; 
    text-decoration: none !important; 
    font-weight: normal !important; 
}

.contact-details a:hover {
    text-decoration: underline !important; 
}
