/* Секція */
.desc-design-category-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
    box-sizing: border-box;
}

/* Заголовок */
.title-desc-services {
    width: 100%;
    max-width: 800px; /* така ж ширина як у тексту */
    
    font-size: clamp(1.7rem, 2.2vw, 2.3rem);
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: 0.02em;

    color: #2f4447; /* <-- новий колір заголовка */

    padding-bottom: 0.9rem;

    border-bottom: 1px solid rgba(47, 68, 71, 0.18);

    text-align: justify; /* вирівнювання по ширині */
}

/* Текст */
.desc-design-category-section .text-medium p {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    line-height: 1.7;
    margin: 0;
    text-align: justify; /* однакове вирівнювання */
    max-width: 800px;
    color: rgba(47, 68, 71, 0.9);
}

/* Адаптив */
@media (max-width: 768px) {
    .desc-design-category-section .container {
        gap: 1rem;
        padding: 2rem 1rem;
    }

    .title-desc-services {
        font-size: clamp(1.3rem, 4vw, 1.7rem);
        padding-bottom: 0.6rem;
        max-width: 100%;
        color: #2f4447; /* <-- колір для мобільної версії */
    }

    .desc-design-category-section .text-medium p {
        font-size: clamp(0.95rem, 2.5vw, 1.05rem);
        max-width: 100%;
    }
}