/* ========== СЕКЦИЯ О ПРОЕКТЕ ========== */
.about-section {
    padding: 100px 20px;
    background: #ffffff;
}

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

/* Левая часть - текст */
.about-text {
    flex: 0 0 50%; /* Фиксированная ширина 45% */
    max-width: 550px;
}

.about-title {
    font-family: 'Manrope', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.about-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 26px;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 40px 0;
    line-height: 1.5;
}

.about-description {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    line-height: 1.7;
    margin: 0 0 25px 0;
}

.about-description strong {
    font-weight: 700;
    color: #856639;
}

.about-highlight {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.7;
    margin: 0;
}

/* Правая часть - изображение */
.about-image {
    flex: 1; /* Занимает все оставшееся пространство */
    max-width: none; /* Убираем ограничение */
}

.about-image img {
    width: 100%;
    height: 500px; /* Фиксированная высота */
    border-radius: 20px;
    object-fit: cover; /* Обрезает изображение, сохраняя пропорции */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}