

.content {
    margin-bottom: 80px;
}

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

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

.about-description {
    font-size: 24px;
    font-weight: 500;
    line-height: 22px;
    color: #000;
    margin-bottom: 35px;
}

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

.about-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;
}

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

.about-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 5px;
}

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

.about-card-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #000;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.feature-icon {
    width: 24px;
    height: 24px;

}
 

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

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

@media (max-width: 768px) {
    .about-section {
        padding-top: 30px;
    }
    
    .about-title {
        font-size: 22px;
        line-height: 26px;
        margin-bottom: 35px;
        text-align: left;
    }
    
    .about-description {
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 35px;
        text-align: left;
    }
    
    .about-card {
        padding: 15px;
        min-height: 180px;
    }
    
    .about-card-title {
        font-size: 13px;
    }
    
    .about-card-text {
        font-size: 13px;
        line-height: 18px;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 20px;
        line-height: 24px;
    }
    
    .about-description {
        font-size: 16px;
        line-height: 20px;
    }
    
    .about-card {
        padding: 12px;
        min-height: 160px;
    }
}

