.contact-hero {
    background: linear-gradient(135deg, #4a7c59 0%, #3d6849 100%);
    color: #fff;
    padding: 5rem 2rem;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.contact-main {
    padding: 5rem 2rem;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: stretch;
}

.contact-info-side,
.contact-image-side {
    flex: 1;
}

.contact-info-side h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.contact-info-side > p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: #555;
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.contact-detail p {
    color: #666;
    line-height: 1.7;
}

.contact-note {
    background: #f5f1ed;
    padding: 1.5rem;
    border-radius: 4px;
    margin-top: 2rem;
}

.contact-note p {
    color: #666;
    line-height: 1.6;
}

.contact-image-side {
    border-radius: 4px;
    overflow: hidden;
    min-height: 500px;
}

.contact-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-section {
    background: #fafaf8;
    padding: 5rem 2rem;
}

.location-content {
    max-width: 1200px;
    margin: 0 auto;
}

.location-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.location-content > p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: #555;
}

.location-details {
    display: flex;
    gap: 3rem;
}

.location-item {
    flex: 1;
    background: #fff;
    padding: 2rem;
    border-radius: 4px;
}

.location-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.location-item p {
    color: #666;
    line-height: 1.7;
}

@media (max-width: 968px) {
    .contact-container {
        flex-direction: column;
    }

    .location-details {
        flex-direction: column;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
    }
}