.content {
    margin-bottom: 80px;
}

.contacts-section {
    margin-bottom: 25px;
    padding-top: 27px;
}

.contacts-title {
    font-size: 36px;
    font-weight: 600;
    line-height: 20px;
    color: #000;
    margin-bottom: 47px;
}

.contacts-grid {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 49px;
    width: 100%;
    height: 220px;
}

.contact-card {
    flex: 1;
    height: 220px;
    padding: 22px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.contact-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

/* Стили для карточки телефона */
.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 18px;
}

.contact-description {
    width: 268px;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #000;
}

.phone-container {
    width: 152px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.phone-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-number {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #000;
}

.working-hours {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 5px;
}

.hours-title,
.hours-schedule {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #000;
}

/* Стили для карточки реквизитов */
.requisites-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #000;
    margin-bottom: 5px;
}

.requisites-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;
    color: #000;
    height: 151px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Стили для карточки почты */
.email-icon {
    width: 25px;
    height: 24px;
    margin-bottom: 5px;
}

.email-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #000;
    margin-bottom: 5px;
}

.email-address {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #000;
}

/* Адаптивность для секции контактов */
@media (max-width: 1395px) {
    .contacts-grid {
        gap: 30px;
    }
    
    .contacts-title {
        font-size: 30px;
        margin-bottom: 50px;
    }
    
    .contact-description {
        width: 100%;
    }
}

@media (max-width: 1200px) {
    .contacts-grid {
        flex-direction: column;
        height: auto;
        gap: 20px;
    }
    
    .contact-card {
        width: 100%;
        height: auto;
        min-height: 200px;
    }
    
    .contacts-title {
        font-size: 26px;
        margin-bottom: 40px;
    }
    
    .requisites-text {
        height: auto;
    }
}

@media (max-width: 768px) {
    .contacts-section {
        padding-top: 30px;
    }
    
    .contacts-title {
        font-size: 22px;
        line-height: 26px;
        margin-bottom: 30px;
        text-align: left;
    }
    
    .contact-card {
        padding: 15px;
        min-height: 180px;
    }
    
    .contact-description {
        font-size: 13px;
        line-height: 18px;
    }
    
    .phone-number,
    .hours-title,
    .hours-schedule,
    .requisites-title,
    .requisites-text,
    .email-title,
    .email-address {
        font-size: 13px;
    }
    
    .requisites-text {
        line-height: 22px;
    }
}

@media (max-width: 480px) {
    .contacts-title {
        font-size: 20px;
        line-height: 24px;
    }
    
    .contact-card {
        padding: 12px;
        min-height: 160px;
    }
    
    .contact-info {
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .working-hours {
        gap: 3px;
    }
}