.about-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 60px 0;
}

.about-section .section-title {
    text-align: center;
    margin-bottom: 30px;
}

.about-section .section-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.about-image {
    width: 100%;
}

.me-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.about-content {
    width: 100%;
    text-align: center;
    padding: 0 10px;
}

.about-content h3 {
    color: #4B2C24;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 500;
}

.col-text {
    font-weight: 700;
    font-size: 16px;
}

.about-content .intro-text {
    color: #4B2C24;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-content p {
    color: #4A332F;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: left;
}

.about-content .cta-button-primary {
    margin: 24px auto 0;
    display: block;
    width: fit-content;
}

.cta-button-wrapper {
    text-align: center;
}

.specialties-list {
    text-align: left;
    list-style: none;
    padding: 0;
    margin: 0;
}

.specialties-list li {
    color: #4A332F;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.specialties-list li:before {
    content: "•";
    color: #D4B196;
    position: absolute;
    left: 0;
}

@media (min-width: 768px) {
    .about-section .section-content {
        flex-direction: row;
        gap: 60px;
        align-items: center;
    }

    .about-image {
        flex: 1;
    }

    .about-content {
        flex: 1;
        text-align: left;
    }

    .about-content h3 {
        font-size: 30px;
    }
}

@media (min-width: 1200px) {
    .about-content h3 {
        font-size: 33px;
    }
}

/* Why section styles */
.why-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff4e5 0%, #fdf7f7 100%);
}

.why-section .section-heading {
    text-align: center;
    margin-bottom: 30px;
    font-size: clamp(2rem, 2.5vw + 0.9rem, 2.5rem);
    font-weight: 700;
}

.why-section .section-heading.heading-divider::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #E8A798;
    margin: 12px auto 0;
}

.why-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.why-image {
    width: 100%;
}

.office-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.why-text {
    width: 100%;
}

.why-text h3 {
    color: #4B2C24;
    font-size: 24px;
    margin-bottom: 20px;
    margin-top: 30px;
    font-weight: 600;
    text-align: left;
}

.why-text p {
    color: #4A332F;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: left;
}

.why-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.why-text ul li {
    background-color: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(75, 44, 36, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #E8A798;
    color: #4A332F;
    font-size: 16px;
    line-height: 1.6;
}

.why-text ul li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(75, 44, 36, 0.12);
}

.why-text .cta-button-primary {
    margin: 30px auto 0;
    display: block;
    width: fit-content;
}

.why-text ul li strong {
    color: #4B2C24;
    font-weight: 600;
}

/* Testimonials section styles */
.testimonials-section {
    padding: 0 60px;
    margin-bottom: 30px;
}

.testimonials-section .section-heading {
    text-align: center;
    margin-bottom: 30px;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial {
    background-color: white;
    border-radius: 10px;
    padding: 30px 70px;
    box-shadow: 0 3px 10px rgba(75, 44, 36, 0.08);
    width: 100%;
    min-height: 250px;
    flex-shrink: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-stars {
    color: #FFD700;
    font-size: 20px;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-align: center;
}

.testimonial-text {
    font-style: italic;
    color: #4A332F;
    margin-bottom: 15px;
    line-height: 1.8;
}

.testimonial-author {
    text-align: right;
    font-weight: 600;
    color: #4B2C24;
    margin: 0;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #4B2C24;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background-color: #E8A798;
}

.carousel-btn-prev {
    left: 10px;
}

.carousel-btn-next {
    right: 10px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #D4B196;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-dot.active {
    background-color: #4B2C24;
}

@media (min-width: 768px) {
    .why-content-wrapper {
        flex-direction: row;
        gap: 60px;
        align-items: center;
        justify-content: center;
    }

    .why-image {
        flex: 1;
        max-width: 45%;
    }

    .why-text {
        flex: 1;
    }

    .testimonials-section {
        padding: 0 80px;
    }

    .carousel-container {
        max-width: 1000px;
    }

    .carousel-btn-prev {
        left: 20px;
    }

    .carousel-btn-next {
        right: 20px;
    }

    .testimonial {
        padding: 40px 90px;
        min-height: 280px;
    }
}
