/* Section Title */
.only-content .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.only-content .section-title h2 {
    font-size: 36px;
    font-weight: bold;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 2px;
}


/* Contact Content */
.only-content .contact-content {
    text-align: left; /* Changed from center for a more formal look */
    line-height: 1.6;
}

.only-content .contact-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

/* Contact Details */
.only-content .contact-details p {
    font-size: 18px;
    color: #333;
    margin: 15px 0;
}

.only-content .contact-details strong {
    font-weight: bold;
    color: #2c3e50;
}

.only-content .contact-details a {
    color: #f05a28;
    text-decoration: none;
    transition: color 0.3s ease;
}

.only-content .contact-details a:hover {
    color: #d35400;
    text-decoration: underline;
}

/* Two-column layout */
.contact-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap; /* Makes it responsive */
}

.contact-left, .contact-right {
    width: 48%;
}

.contact-left iframe {
    border: none;
    border-radius: 10px; /* Adds smooth rounded corners to the map */
}

/* Media Queries for responsiveness */
@media (max-width: 768px) {
    .contact-left, .contact-right {
        width: 100%; /* Full width on smaller screens */
        margin-bottom: 20px;
    }

    .only-content .section-title h2 {
        font-size: 28px;
    }

    .only-content .contact-content p {
        font-size: 16px;
    }

    .only-content .contact-details p {
        font-size: 16px;
    }
}
