.contacts-section {
    padding: 150px 0;
    background: #fff;
}

.contacts-container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 15px;
}

.contacts-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: #060607;
    text-align: center;
    margin: 0 0 60px 0;
}

.contacts-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 60px;
}

.contacts-map {
    width: 100%;
    height: 400px;
    background: #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
}

.contacts-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contacts-info-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contacts-info-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #060607;
    margin: 0;
}

.contacts-info-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #060607;
    margin: 0;
}

.contacts-phone {
    color: #1976d2;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contacts-phone:hover {
    color: #38a817;
}

.contacts-info-note {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #666;
    margin: 5px 0 0 0;
}

.contacts-button-wrapper {
    text-align: center;
}

.contacts-button {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: #38a817;
    border: 2px solid #38a817;
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contacts-button:hover {
    background: #38a817;
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .contacts-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .contacts-section {
        padding: 100px 0;
    }
    
    .contacts-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .contacts-map {
        height: 300px;
    }
    
    .contacts-info {
        gap: 30px;
    }
    
    .contacts-info-title {
        font-size: 16px;
    }
    
    .contacts-info-text {
        font-size: 14px;
    }
    
    .contacts-button {
        width: 100%;
    }
}


@media (max-width: 480px) {
    .contacts-section {
        padding: 60px 0;
    }
    
    .contacts-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .contacts-content {
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .contacts-map {
        height: 250px;
    }
    
    .contacts-info {
        gap: 25px;
    }
    
    .contacts-info-title {
        font-size: 15px;
    }
    
    .contacts-info-text {
        font-size: 13px;
    }
    
    .contacts-button {
        padding: 12px 30px;
        font-size: 14px;
    }
}
