/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #EFE7E5;
}

.contact .section-header {
    margin-bottom: 2rem; /* Reduce space after section header */
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-info {
    margin: 1.5rem 0;
}

.contact-link {
    display: block;
    font-size: 1.25rem;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-link:hover {
    color: var(--secondary-color);
}

.business-info {
    color: var(--light-text);
    font-size: 1rem;
    margin-top: 1.5rem;
}

.team-picture {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}

.team-group-photo {
    max-width: 1200px;
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    border: 2px solid #e2e8f0;
}

@media (max-width: 768px) {
    .contact {
        padding: 4rem 0;
    }
    
    .contact .section-header {
        margin-bottom: 1.5rem; /* Even less space on mobile */
    }
    
    .team-group-photo {
        max-width: 100%;
    }
} 