.map-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.contact-row {
    align-items: center;
    justify-content: space-evenly;
    display: flex;
}

.contact-details {
    width: 50%;
}

.contact-title-call {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Contact info styling */
.contact-info {

    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    margin: 40px auto;
    max-width: 800px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Title styling for contact section */
.contact-title {
    font-size: 23px;
    color: #FF6600;
    font-weight: 500;
    margin-bottom: 15px;
    margin-top: 30px;
    text-align: center;
}

/* Contact details styling */
.contact-details {
    transform: translateY(-10px);
    font-size: 1.1em;
    color: #555;
    line-height: 1.6;
    text-align: center;

}
.contact-details p {
    margin-bottom: 10px;
}

.contact-details a {
    color: #555;
    text-decoration: none;
}

.contact-details a:hover {
    color: #ffc739;
}

.contact-details-row{
    padding: 30px 20px 0px 20px;
    display: flex;
}

.form-container {
   width: 50%;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    color: #FF6600;
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.form-group textarea {
    resize: vertical;
}
.form-group button {
    transition: 0.2s;
    background-color: #047195;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

.form-group button:hover {
    transition: 0.2s;
    background-color: #ffc739;
}

/* Responsive design adjustments */
@media (max-width: 600px) {
    .contact-title {
        font-size: 1.5em;
    }

    .contact-details {
        font-size: 1em;
    }
}