body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    background-color: #fff;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Regular Cleaning Section */
.regular-cleaning-section {
    background-color: #FF962B;
    padding: 60px 0;
}

.regular-cleaning-section .content-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.regular-cleaning-section .text-content {
    max-width: 50%;
}

.regular-cleaning-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 0;
}

.advantages-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.advantages-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    margin-bottom: 15px;
}

.advantage-icon {
    width: 24px;
    height: 24px;
}

.order-button {
    background-color: #F98820;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
}

.image-block-desktop {
    max-width: 45%;
}
.image-block-desktop img {
    max-width: 100%;
}

.image-block-mobile {
    display: none;
}


/* Testimonial Section */
.testimonial-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.testimonial-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.author-photo img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-text h3 {
    margin: 0 0 5px 0;
    font-size: 20px;
    font-weight: 600;
}

.author-title {
    margin: 0 0 20px 0;
    color: #777;
}

.testimonial-text p {
    font-size: 16px;
    line-height: 1.6;
}

.testimonial-signature {
    margin-top: 20px;
    text-align: right;
}

.testimonial-signature h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.testimonial-signature .author-title {
    margin: 5px 0 0;
    color: #6c757d;
}

.read-more-btn {
    display: none;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .regular-cleaning-section .content-block {
        flex-direction: column;
        padding: 30px 20px;
    }

    .image-block-desktop {
        display: none;
    }
    .image-block-mobile {
        display: block;
        margin-bottom: 30px;
        text-align: center;
    }
    .image-block-mobile img {
        max-width: 80%;
    }
    
    .regular-cleaning-section .text-content {
        max-width: 100%;
        text-align: right;
    }

    .advantages-list {
        display: inline-block;
        text-align: left;
    }
    
    .advantages-list li {
        justify-content: center;
    }

    .testimonial-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .author-photo {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .testimonial-text-content {
        max-height: 200px;
        overflow: hidden;
        position: relative;
        transition: max-height 0.5s ease-out;
    }

    .testimonial-text-content::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100px;
        background: linear-gradient(to bottom, transparent, white);
        pointer-events: none;
    }

    .testimonial-text.is-expanded .testimonial-text-content {
        max-height: 1000px; /* Достаточно большая высота для полного текста */
    }
    
    .testimonial-text.is-expanded .testimonial-text-content::after {
        display: none;
    }

    .testimonial-text.is-expanded .read-more-btn {
        display: none;
    }

    .read-more-btn {
        display: block;
        margin: 15px auto 0;
        padding: 10px 20px;
        border: 1px solid #FF962B;
        background-color: transparent;
        color: #FF962B;
        font-weight: 600;
        border-radius: 5px;
        cursor: pointer;
    }
}

/* FAQ Section */
.faq-section {
    padding: 50px 0;
}

.faq-section .section-title {
    margin-bottom: 40px;
    text-align: center;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    margin-bottom: 15px;
    padding: 20px;
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.arrow {
    width: 10px;
    height: 10px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.faq-item.active .arrow {
    transform: rotate(-135deg);
}

.faq-answer {
    display: none;
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
} 

@media (max-width: 768px) {
  .faq-section {
    padding: 16px 0 !important;
  }
} 

/* Generic Advantages Section (cards + airy spacing) */
.advantages-section {
    padding: 64px 0;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
}

.advantages-section .section-title {
    text-align: center;
    margin: 0 0 28px 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.advantage-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.advantage-item i {
    color: #FF962B;
    font-size: 18px;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .advantages-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .advantages-section {
        padding: 36px 0;
    }
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}