#contact {
    background: #f9f9f9;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-container h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.contact-left {
    flex: 1;
}

.contact-right {
    flex: 1;
}

.contact-info {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.contact-row {
    display: flex;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.contact-label {
    font-weight: bold;
    color: #333;
    text-align: right;
    min-width: 100px;
    padding-right: 0.5rem;
}

.contact-value {
    text-align: left;
    flex: 1;
    min-width: 200px;
}

.hours-list {
    display: flex;
    flex-direction: column;
}

.hours-list div {
    margin-bottom: 0.25rem;
}

.social-icons {
    display: flex;
    gap: 2rem;
    justify-content: flex-start;
    margin-bottom: 0;
    padding-left: calc(100px + 0.5rem);
}

.social-icons a {
    display: block;
    width: 50px;
    height: 50px;
    transition: opacity 0.3s ease, transform 0.1s ease;
}

.social-icons a:hover {
    opacity: 0.7;
}

.social-icons a:active {
    transform: scale(0.93);
}

.social-icons img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.map-container {
    width: 100%;
    min-width: 300px;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

#map {
    width: 100%;
    height: 100%;
}

.directions-btn {
    display: block;
    margin-top: 0.75rem;
    text-align: center;
    padding: 0.6rem 1.25rem;
    background: #44a122;
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.directions-btn:hover {
    background: #3a8f1d;
}

/* Mobile styles */
@media (max-width: 768px) {
.contact-container h1 {
        font-size: 2rem;
    }

    .contact-content {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-info {
        font-size: 1rem;
    }

    .contact-row {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 1rem;
    }

    .contact-label {
        text-align: left;
        min-width: auto;
        padding-right: 0;
        margin-bottom: 0.25rem;
    }

    .social-icons {
        gap: 1.5rem;
        justify-content: center;
    }

    .social-icons a {
        width: 40px;
        height: 40px;
    }

    .map-container {
        height: 300px;
    }
}