.contact-box {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    gap: 30px;
}
 
.contact-details, .online-contact {
    background: rgba(255, 245, 225, 0.95);
    border: 1px solid #a32525;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
}
 
.contact-details {
    flex: 3;
}

.online-contact {
    flex: 2;
}

.contact-details h3, .online-contact h3 {
    color: #a32525;
    margin-bottom: 15px;
}

.contact-details table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #a32525;
    margin-top: 15px;
}

.contact-details th, .contact-details td {
    padding: 12px;
    text-align: left;
    border: 1px solid #a32525;
    font-size: 14px;
}

.contact-details th {
    background: rgba(231, 125, 17, 0.1);
    font-weight: bold;
}

.online-contact a {
    color: #e77d11;
    text-decoration: none;
    transition: color 0.3s;
}

.online-contact a:hover {
    color: #a32525;
}

.location-box {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    background: rgba(255, 245, 225, 0.95);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    gap: 30px;
}

.location-info {
    flex: 1;
}

.location-info h3 {
    color: #a32525;
    margin-bottom: 15px;
}

.location-info h4 {
    color: #e77d11;
    margin: 20px 0 10px;
}

.map-container {
    flex: 1;
    height: 300px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}


@media (max-width: 768px) {
    .contact-box {
        flex-direction: column;
        gap: 15px;
    }

    .contact-details, .online-contact {
        width: 100%;
        padding: 15px;
        font-size: 14px;
    }

    .contact-details h3, .online-contact h3 {
        font-size: 1.2rem;
    }

    .contact-details th, .contact-details td {
        font-size: 0.9rem;
        padding: 10px;
    }

    .location-box {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    .map-container {
        height: 250px;
    }

    .location-info h3 {
        font-size: 1.2rem;
    }

    .location-info h4 {
        font-size: 1rem;
    }
}