body {
    margin: 0;
    background-color: #FAFAFA;
    color: #333;
    font-family: 'Poppins', sans-serif;
}

.contact-page * {
    box-sizing: border-box;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.hero-text {
    text-align: center;
    margin-bottom: 50px;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 10px;
    color: #181818;
}

.hero-text p {
    color: #777;
    font-size: 1.1rem;
    max-width: 700px;
    margin: auto;
    line-height: 1.7;
}

.info-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.contact-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #E5E5E5;
    text-align: center;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: #F3F3F3;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle {
    font-size: 30px;
    color: #181818;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card a {
    display: block;
    color: #181818;
    text-decoration: none;
    font-weight: 500;
}

.highlight {
    color: #181818;
    font-weight: 700;
}

.locations-section {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #E5E5E5;
    text-align: center;
}

.locations-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.loc-card {
    flex: 1;
    min-width: 250px;
    background: #F5F5F5;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #E5E5E5;
    text-align: left;
}

.badge {
    background: #181818;
    color: #fff;
    font-size: 12px;
    padding: 2px 10px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 10px;
}

.maps-btn {
    display: inline-block;
    background: #181818;
    color: #fff;
    padding: 12px 30px;
    border-radius: 10px;
    text-decoration: none;
    margin-top: 20px;
    transition: .3s;
}

.maps-btn:hover {
    background: #2C2C2C;
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .locations-section {
        padding: 25px;
    }
}