.contact-section {
    background-color: #f9fafb;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    background-color: white;
    padding: 3rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.contact-details h3, .contact-form h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
}


.contact-details p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-details .info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-details .info-item i {
    font-size: 1.25rem;
    color: #0d76b7;
    margin-top: 5px;
}

.contact-details .info-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.25rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: #0d76b7;
    box-shadow: 0 0 0 3px rgba(13, 118, 183, 0.2);
}

.submit-button {
    display: inline-block;
    width: 100%;
    background-color: #8c1f81;;
    color: white;
    font-weight: 700;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.375rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    font-size: 1.125rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}   

.submit-button:hover {
    background-color: #701967;
}

.map-section {
    padding: 0;
}