.contact-us-section {
    padding: 60px 0;
    background-color: white; 
}

.office-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.office-details {
    padding: 20px;
}

.office-details h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.office-details p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.5;
}

.info-card {
    background-color: #B2A67F;
    color: #000;
    padding: 20px;
    border-radius: 10px; 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); 
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s; 
    margin-bottom: 20px; 
    margin-top: 50px;
}

.info-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.info-card p {
    font-size: 1rem;
}

.info-card:hover {
    transform: scale(1.05); 
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); 
}
