/* Main Styles */
.global-main {
    padding: 80px 0;
    background-color: #fff;
}

/* Hero Section */
.global-hero {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.global-hero::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.global-title {
    font-size: 3.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
}

/* Offices Grid */
.office-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.office-card {
    background: #fff;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.office-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.office-header {
    background: var(--primary-color);
    padding: 20px;
    position: relative;
}

.office-header h3 {
    color: #fff;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.office-content {
    padding: 25px;
}

.office-address {
    margin-bottom: 20px;
}

.office-address p {
    margin: 0 0 5px;
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.5;
}

.office-contact {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item span {
    color: var(--primary-color);
    font-weight: 600;
    margin-right: 10px;
    min-width: 20px;
}

.contact-item a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.office-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.map-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.map-link:hover {
    color: var(--secondary-color);
}

.office-name {
    color: var(--text-color);
    font-size: 0.9rem;
}

.geolocation {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .office-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .global-main {
        padding: 60px 0;
    }

    .global-title {
        font-size: 3rem;
    }
}

@media (max-width: 767px) {
    .office-grid {
        grid-template-columns: 1fr;
    }

    .global-title {
        font-size: 2.5rem;
    }

    .office-card {
        max-width: 400px;
        margin: 0 auto;
    }
} 