/* --- СТИЛІ СЕКЦІЇ ПРО НАС --- */

.custom-hero-container {
    border-radius: 20px;
    overflow: hidden; /* Обрізає кути, щоб фото не вилазило за рамки */
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Контейнер для фото */
.hero-image-col {
    min-height: 400px; /* На телефонах фото буде мати цю висоту */
}

/* Саме фото */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain; /* ЗМІНЕНО: тепер картинка вміщується повністю */
    background-position: center;
    background-repeat: no-repeat;
    /* opacity видалено, щоб повернути натуральний вигляд */
}

/* Текстовий блок */
.hero-text-col {
    background-color: #dad9ab;
    color: #4a3c2c;
    z-index: 2;
}

/* Типографіка (Шрифти) */
.hero-text-col h1, .hero-text-col h2 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #4a3c2c;
    font-weight: 700;
}

.hero-text-col p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    text-indent: 30px; /* Червоний рядок, як ти й хотіла */
}

.custom-services-list {
    padding-left: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 18px;
    color: #555;
    line-height: 1.5;
}

/* На дуже великих екранах (MacBook) можна збільшити мінімальну висоту фото */
@media (min-width: 992px) {
    .hero-image-col {
        min-height: 600px;
    }
}