.about-section {
    padding: 20px 0;
    padding-bottom: 20px;
    background-color: #fff;
    font-family: 'Rubik', sans-serif;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-gallery {
    flex: 1;
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-gallery-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.about-gallery-slide {
    min-width: 100%;
    height: 100%;
}

.about-gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    flex: 1;
}

.about-title {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

.about-description {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #F97316;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

/* Планшеты в альбомной ориентации */
@media (max-width: 1024px) {
    .about-container {
        gap: 40px;
    }

    .about-gallery {
        height: 450px;
    }

    .about-title {
        font-size: 38px;
    }

    .about-description {
        font-size: 17px;
    }
}

/* Планшеты в портретной ориентации */
@media (max-width: 992px) {
    .about-section {
        padding: 60px 0;
    }

    .about-container {
        flex-direction: column;
        gap: 40px;
    }

    .about-gallery {
        width: 100%;
        height: 400px;
        max-width: 600px;
        margin: 0 auto;
    }

    .about-content {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Большие мобильные устройства */
@media (max-width: 768px) {
    .about-section {
        padding: 50px 0;
    }

    .about-container {
        padding: 0 15px;
        gap: 30px;
    }

    .about-gallery {
        height: 350px;
    }

    .about-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .about-description {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 14px;
    }
}

/* Средние мобильные устройства */
@media (max-width: 576px) {
    .about-section {
        padding: 40px 0;
    }

    .about-gallery {
        height: 300px;
    }

    .about-title {
        font-size: 28px;
    }

    .about-description {
        font-size: 15px;
        line-height: 1.5;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-item {
        padding: 15px;
    }

    .stat-number {
        font-size: 26px;
    }

    .stat-label {
        font-size: 13px;
    }
}

/* Маленькие мобильные устройства */
@media (max-width: 375px) {
    .about-section {
        padding: 30px 0;
    }

    .about-container {
        padding: 0 10px;
    }

    .about-gallery {
        height: 250px;
    }

    .about-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .about-description {
        font-size: 14px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 12px;
    }
}
