.moms-channel-section {
    background-color: var(--bg-color);
    padding: 5rem 0;
    position: relative;
}

.moms-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Заголовок секции */
.moms-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 2rem;
    margin-top: 1rem;
}

.moms-title {
    font-size: 2.5rem;
    color: var(--organic);
    margin-bottom: 1.2rem;
    font-weight: 350;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.moms-subtitle {
    font-size: 1.2rem;
    color: var(--text-color);
    font-weight: 400;
    line-height: 1.6;
    font-style: normal;
    margin-top: -0.5rem;
}

/* Основной контент */
.moms-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
}

.moms-description {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-color-light);
    margin: 0;
    font-weight: 350;
}

/* Контейнер для изображения */
.moms-image-container {
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 3px 5px 20px 0 rgba(0, 0, 0, 0.5);
}

.moms-image-placeholder {
    font-size: 1.1rem;
    color: var(--organic);
    opacity: 0.7;
    text-align: center;
    padding: 2rem;
}

.moms-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Декоративные элементы */
.moms-divider {
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(106, 111, 76, 0.1) 30%,
        rgba(106, 111, 76, 0.1) 70%,
        transparent 100%);
    margin: 2rem auto;
    width: 60%;
    border: none;
}

/* Минималистичные акценты */
.moms-accent {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(118, 128, 93, 0.03);
    border-radius: 50%;
    z-index: 0;
}

.moms-accent:nth-child(1) {
    top: -50px;
    left: -50px;
}

.moms-accent:nth-child(2) {
    bottom: -30px;
    right: -30px;
    width: 60px;
    height: 60px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .moms-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .moms-text {
        padding-right: 0;
        padding: 0 1rem;
    }

    .moms-title {
        font-size: 2.1rem;
    }

    .moms-subtitle {
        font-size: 0.9rem;
    }

    .moms-description {
        font-size: 1.1rem;
    }

    .moms-image-container {
        margin: 0 1rem;
    }
}

@media (max-width: 480px) {
    .moms-channel-section {
        padding: 3rem 0;
    }

    .moms-container {
        padding: 0 1rem;
    }

    .moms-title {
        font-size: 1.9rem;
    }

    .moms-header {
        margin-bottom: 3rem;
        padding: 0;
    }

    .moms-divider {
        width: 80%;
    }
}

/* Анимации для плавности */
.moms-title,
.moms-subtitle,
.moms-description {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.moms-title { animation-delay: 0.1s; }
.moms-subtitle { animation-delay: 0.3s; }
.moms-description { animation-delay: 0.5s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Контейнер для текста и кнопки */
.moms-text {
    padding-right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

/* Кнопка */
.moms-join-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: var(--olive-green);
    color: white;
    border: none;
    padding: 15px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0.7rem;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 3px 5px 20px 0 rgba(118, 128, 93, 0.5);
    position: relative;
    overflow: hidden;
    max-width: fit-content;
    margin-top: 1.5rem;
}

/* Hover эффект */
.moms-join-button:hover {
    cursor: pointer;
    box-shadow: 0 2px var(--olive-green);
    transform: translateY(-5px);
    background: var(--organic);
}

/* Активированный вид (при клике мыши) */
.moms-join-button:active {
    transform: translateY(0);
    box-shadow: none;
}

/* Иконка Telegram */
.moms-telegram-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.moms-join-button:hover .moms-telegram-icon {
    transform: translateX(3px);
}

/* Адаптивность для кнопки */
@media (max-width: 768px) {
    .moms-text {
        align-items: center;
        text-align: center;
        padding-right: 0;
    }

    .moms-join-button {
        margin-top: 2rem;
        padding: 14px 28px;
    }
}

@media (max-width: 480px) {
    .moms-join-button {
        padding: 12px 25px;
        font-size: 15px;
    }

    .moms-telegram-icon {
        width: 18px;
        height: 18px;
    }
}

/* Анимация для кнопки */
.moms-join-button {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.7s;
}

/* Стили для секции "Для мам, которые хотят" */
/*=/=/=/=/=/=/=/=/=/=/=/=/=/*/
.moms-wants-section {
    background-color: var(--bg-color);
    padding: 4rem 0;
    position: relative;
}

.moms-wants-container {
    margin: 0 auto;
    padding: 0 1.5rem;
}

.moms-wants-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.moms-wants-left {
    padding-right: 2rem;
}

.moms-wants-title {
    font-size: 1.8rem;
    color: var(--organic);
    font-weight: 350;
    line-height: 1.4;
    letter-spacing: -0.01em;
    margin: 0;
}

.moms-wants-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.moms-wants-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.moms-wants-icon {
    font-size: 1.2rem;
    color: var(--organic);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.moms-wants-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color-light);
    margin: 0;
    font-weight: 350;
}

.moms-wants-text em {
    font-style: italic;
    color: var(--organic);
    font-weight: 500;
}

/* Адаптивность */
@media (max-width: 768px) {
    .moms-wants-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .moms-wants-left {
        padding-right: 0;
    }

    .moms-wants-title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .moms-wants-item {
        justify-content: center;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .moms-wants-section {
        padding: 3rem 0;
    }

    .moms-wants-title {
        font-size: 1.4rem;
    }

    .moms-wants-text {
        font-size: 1rem;
    }

    .moms-wants-item {
        gap: 0.5rem;
    }
}

/* Анимации */
.moms-wants-title,
.moms-wants-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.moms-wants-title { animation-delay: 0.1s; }
.moms-wants-item:nth-child(1) { animation-delay: 0.3s; }
.moms-wants-item:nth-child(2) { animation-delay: 0.5s; }
.moms-wants-item:nth-child(3) { animation-delay: 0.7s; }

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

/* Стили для секции отзывов */
.client-testimonials-section {
    background-color: var(--bg-color);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.moms-testimonials-title {
    font-size: 2.2rem;
    color: var(--organic);
    margin-bottom: 3rem;
    font-weight: 350;
    text-align: center;
    letter-spacing: -0.01em;
}

/* Контейнер карусели */
.testimonial-carousel-container {
    position: relative;
    max-width: 450px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* Карусель */
.testimonial-carousel {
    position: relative;
    weight: 100%;
    background: #f5f5f5;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15)
}

.testimonial-slide {
    display: none;
    width: 100%;
}


.testimonial-slide.active {
    display: block;
}


.testimonial-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain:
    background: #f5f5f5;
    max-height: 600px;
}

/* Кнопки навигации */
.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 1px solid rgba(106, 111, 76, 0.2);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-button:hover {
    background: var(--organic);
}

.carousel-button:hover svg path {
    stroke: white;
}

.carousel-button-prev {
    left: 0;
}

.carousel-button-next {
    right: 0;
}

/* Индикаторы (точки) */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(106, 111, 76, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator.active {
    background: var(--organic);
    transform: scale(1.2);
}

.indicator:hover {
    background: var(--organic);
}

/* Адаптивность */
@media (max-width: 768px) {
    .testimonial-carousel-container {
        max-width: 400px;
        padding: 0 2.5rem;
    }

    .testimonial-img {
        max-height: 500px;
    }

    .carousel-button {
        width: 40px;
        height: 40px;
    }

    .carousel-button svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .client-testimonials-section {
        padding: 3rem 0;
    }

    .moms-testimonials-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .testimonial-carousel-container {
        max-width: 320px;
        padding: 0 2rem;
    }

    .testimonial-img {
        max-height: 450px;
    }

    .carousel-button {
        width: 36px;
        height: 36px;
    }

    .carousel-button svg {
        width: 18px;
        height: 18px;
    }

    .carousel-indicators {
        gap: 0.6rem;
    }

    .indicator {
        width: 8px;
        height: 8px;
    }
}

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


/*FAQ СЕКЦИЯ*/

.faq-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-title {
    font-size: 2rem;
    font-weight: 350;
    color: var(--organic);
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 400;
}

.faq-list {
    list-style: none;
}

.faq-item {
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    padding: 1.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--organic);
    transition: all 0.2s ease;
}

.faq-question:hover {
    color: var(--text-color);
}

/* Минималистичная стрелка */
.faq-icon {
    width: 20px;
    height: 20px;
    position: relative;
    transition: transform 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--organic);
    transition: all 0.3s ease;
}

/* Вертикальная линия */
.faq-icon::before {
    width: 2px;
    height: 12px;
    top: 4px;
    left: 9px;
}

/* Горизонтальная линия */
.faq-icon::after {
    width: 12px;
    height: 2px;
    top: 9px;
    left: 4px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-icon::before {
    transform: rotate(90deg);
}

.faq-answer {
    padding: 0 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--text-color);
    line-height: 1.7;
}

.faq-answer-content {
    padding-bottom: 1.5rem;
    padding-left: 0.5rem;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-list ul {
    padding-left: 1.2rem;
    margin: 0.8rem 0;
}

.faq-list li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.highlight {
    color: var(--highlight);
    font-weight: 500;
}

/* Адаптивность */
@media (max-width: 768px) {
    .faq-title {
        font-size: 1.8rem;
    }

    .faq-subtitle {
        font-size: 1rem;
    }

    .faq-question {
        padding: 1.2rem 0.8rem;
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .faq-container {
        padding: 0 0.5rem;
    }

    .faq-title {
      ont-size: 1.6rem;
    }

    .faq-question {
        padding: 1rem 0.5rem;
    }

    .faq-answer {
        padding: 0 0.5rem;
    }

    .faq-answer-content {
        padding-bottom: 1rem;
        padding-left: 0.2rem;
    }
}

/* Минималистичные анимации */
@keyframes fadeIn {
from {
    opacity: 0;
    transform: translateY(5px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

.faq-item {
    animation: fadeIn 0.4s ease-out;
}

.faq-item:nth-child(1) { animation-delay: 0.05s; }
.faq-item:nth-child(2) { animation-delay: 0.1s; }
.faq-item:nth-child(3) { animation-delay: 0.15s; }
.faq-item:nth-child(4) { animation-delay: 0.2s; }
.faq-item:nth-child(5) { animation-delay: 0.25s; }
.faq-item:nth-child(6) { animation-delay: 0.3s; }
.faq-item:nth-child(7) { animation-delay: 0.35s; }
.faq-item:nth-child(8) { animation-delay: 0.4s; }



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

/* Стили для секции преимуществ */
.benefits-section {
    background-color: var(--bg-color);
    padding: 4rem 0;
    position: relative;
}

.benefits-title {
    font-size: 2.2rem;
    color: var(--organic);
    margin-bottom: 3rem;
    font-weight: 350;
    text-align: center;
    letter-spacing: -0.01em;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(106, 111, 76, 0.15);
    border-color: var(--organic);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-name {
    font-size: 1.2rem;
    color: var(--organic);
    margin-bottom: 1rem;
    font-weight: 500;
    line-height: 1.4;
}

.benefit-description {
    font-size: 1rem;
    color: var(--text-color-light);
    line-height: 1.6;
    margin: 0;
    font-weight: 350;
}

/* Анимации для карточек */
.benefit-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3) { animation-delay: 0.3s; }
.benefit-card:nth-child(4) { animation-delay: 0.4s; }
.benefit-card:nth-child(5) { animation-delay: 0.5s; }

/* Адаптивность */
@media (max-width: 768px) {
    .benefits-section {
        padding: 3rem 0;
    }

    .benefits-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .benefit-card {
        padding: 1.5rem 1rem;
    }

    .benefit-icon {
        font-size: 2rem;
    }

    .benefit-name {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .benefits-section {
        padding: 2.5rem 0;
    }

    .benefits-title {
        font-size: 1.6rem;
    }

    .benefit-card {
        padding: 1.2rem 0.8rem;
    }

    .benefit-icon {
        font-size: 1.8rem;
    }

    .benefit-name {
        font-size: 1rem;
    }

    .benefit-description {
        font-size: 0.95rem;
    }
}

/* Декоративные элементы для секции */
.benefits-section::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 80px;
    height: 80px;
    background: rgba(118, 128, 93, 0.03);
    border-radius: 50%;
    z-index: 0;
}

.benefits-section::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    background: rgba(118, 128, 93, 0.03);
    border-radius: 50%;
    z-index: 0;
}

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

/* Стили для секции "О МамаСенсорика" */
.moms-about-section {
    background-color: var(--bg-color);
    padding: 4rem 0;
    position: relative;
}

.moms-about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.moms-about-left {
    padding-right: 2rem;
}

.moms-about-title {
    font-size: 1.8rem;
    color: var(--organic);
    font-weight: 350;
    line-height: 1.4;
    letter-spacing: -0.01em;
    margin: 0 0 1.5rem 0;
}

.moms-about-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color-light);
    margin: 0;
    font-weight: 350;
}

.moms-about-right {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.moms-about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.moms-about-feature:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(106, 111, 76, 0.1);
    border-color: var(--organic);
}

.moms-about-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.moms-about-text {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-color-light);
    margin: 0;
    font-weight: 350;
}

/* Анимации */
.moms-about-title,
.moms-about-description,
.moms-about-feature {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.moms-about-title { animation-delay: 0.1s; }
.moms-about-description { animation-delay: 0.3s; }
.moms-about-feature:nth-child(1) { animation-delay: 0.5s; }
.moms-about-feature:nth-child(2) { animation-delay: 0.7s; }
.moms-about-feature:nth-child(3) { animation-delay: 0.9s; }
.moms-about-feature:nth-child(4) { animation-delay: 1.1s; }

/* Адаптивность */
@media (max-width: 768px) {
    .moms-about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .moms-about-left {
        padding-right: 0;
        text-align: center;
    }

    .moms-about-title {
        font-size: 1.6rem;
    }

    .moms-about-description {
        font-size: 1rem;
    }

    .moms-about-feature {
        padding: 0.8rem;
    }

    .moms-about-icon {
        font-size: 1.3rem;
    }

    .moms-about-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .moms-about-section {
        padding: 3rem 0;
    }

    .moms-about-title {
        font-size: 1.4rem;
    }

    .moms-about-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
    }

    .moms-about-icon {
        margin-top: 0;
    }
}

/* Декоративные элементы */
.moms-about-section::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 60px;
    height: 60px;
    background: rgba(118, 128, 93, 0.03);
    border-radius: 50%;
    z-index: 0;
}

.moms-about-section::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: rgba(118, 128, 93, 0.03);
    border-radius: 50%;
    z-index: 0;
}

.moms-section-container {
    margin: 0 auto;
    padding: 0 1.5rem;
}



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

/*  Стилизация изображений для "Наш канал   "*/

.faq-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.channel-image-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.channel-image-content p {
    max-width: 500px;
    margin: 0 auto;
}

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

/*      раздел стоимости канала         */

/* Стили для секции стоимости канала */
.channel-cost {
    margin: 2rem auto;
    padding: 1.5rem 1.25rem;
}

.container-section-channel-cost {
    background-color: var(--olive-green);
    padding: 30px 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    border-radius: 12px;
    margin: 0 auto;
}

.text-section-channel-cost {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    gap: 2rem;
    color: white;
}

.text-block {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.text-channel-cost-h1 {
    font-size: 1.8rem;
    font-weight: 500;
    margin: 0;
    color: white;
}

.bottom-block p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    text-align: justify;
}

.image-section-channel-cost {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 3px 5px 20px 0 rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.photo-section-channel-cost {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.photo-section-channel-cost img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Кнопка */
.channel-cost-button {
    display: inline-block;
    background: white;
    color: var(--olive-green);
    border: none;
    padding: 12px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0.7rem;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 3px 5px 15px 0 rgba(0, 0, 0, 0.3);
    text-align: center;
    margin-top: 1rem;
    max-width: 200px;
}

.channel-cost-button:hover {
    transform: translateY(-3px);
    box-shadow: 3px 8px 20px 0 rgba(0, 0, 0, 0.4);
    background: var(--accent-light);
}

/* Адаптивность для десктопов */
@media screen and (min-width: 880px) {
    .container-section-channel-cost {
        grid-template-columns: 55fr 45fr;
        gap: 3rem;
        padding: 40px;
        min-height: 350px; /* Уменьшенная высота */
    }

    .text-channel-cost-h1 {
        font-size: 2rem;
    }

    .bottom-block p {
        font-size: 1.2rem;
    }
}

/* Адаптивность для планшетов */
@media (max-width: 879px) and (min-width: 601px) {
    .container-section-channel-cost {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 30px;
    }

    .image-section-channel-cost {
        max-height: 300px;
    }
}

/* Адаптивность для мобильных */
@media (max-width: 600px) {
    .channel-cost {
        padding: 1rem;
        margin: 1.5rem auto;
    }

    .container-section-channel-cost {
        padding: 20px 15px;
        gap: 1.5rem;
    }

    .text-channel-cost-h1 {
        font-size: 1.5rem;
    }

    .bottom-block p {
        font-size: 1rem;
        text-align: left;
    }

    .channel-cost-button {
        padding: 10px 20px;
        font-size: 14px;
        max-width: 180px;
    }

    .image-section-channel-cost {
        max-height: 250px;
    }
}

/* Анимации */
.text-block {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.top-block { animation-delay: 0.2s; }
.bottom-block { animation-delay: 0.4s; }

.image-section-channel-cost {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
}