/* Office Locations Styling */
.office-locations {
    background-color: #f9fbfd;
}

.office-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.office-card:hover {
    transform: translateY(-5px);
}

.office-image {
    height: 200px;
    overflow: hidden;
}

.office-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.office-card:hover .office-image img {
    transform: scale(1.05);
}

.office-content {
    padding: 25px;
}

.office-content h3 {
    color: #005F87;
    font-size: 22px;
    margin-bottom: 5px;
}

.company-name {
    color: #333;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 15px;
}

.contact-info {
    margin-top: 15px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.info-item i {
    color: #005F87;
    width: 20px;
    margin-right: 10px;
}

.info-item a, .info-item span {
    color: #555;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: #005F87;
    text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 767px) {
    .office-image {
        height: 160px;
    }
    
    .office-content {
        padding: 20px;
    }
    
    .office-content h3 {
        font-size: 20px;
    }
    
    .company-name {
        font-size: 14px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .office-image {
        height: 180px;
    }
}