/* ========================
           Секция "О нас" (About Section)
               ======================== */
            .about-section {
                padding: 6rem 0;
                background-color: #ffffff;
            }
        
            .about-title {
                font-size: 3rem;
                font-weight: 700;
                color: #000;
                margin-bottom: 2rem;
                letter-spacing: -0.5px;
            }
        
            .about-text {
                font-size: 1.25rem;
                line-height: 1.8;
                font-weight: 600; /* Жирность текста как на макете */
                color: #111;
                margin-bottom: 0;
            }
        
            /* Кнопка */
            .btn-about {
                background-color: #365b48; /* Темно-зеленый цвет */
                color: #ffffff;
                font-weight: 600;
                font-size: 1.05rem;
                padding: 1.1rem 2rem;
                border-radius: 4px;
                border: none;
                transition: background-color 0.3s ease;
                text-decoration: none;
                display: inline-block;
            }
        
            .btn-about:hover {
                background-color: #274334;
                color: #ffffff;
            }
        
            /* Отступы между колонками */
            .about-text-col {
                padding-right: 3rem;
            }
        
            /* Адаптив для планшетов и мобильных телефонов */
            @media (max-width: 991px) {
                .about-section {
                    padding: 4rem 0;
                }
                .about-title {
                    font-size: 2.2rem;
                    margin-bottom: 1.5rem;
                }
                .about-text {
                    font-size: 1.1rem;
                }
                .about-text-col {
                    padding-right: calc(var(--bs-gutter-x) * .5); /* Сброс паддинга Bootstrap */
                }
                .btn-about-wrapper {
                    margin-top: 2.5rem;
                    text-align: left !important;
                }
            }

/* ========================
