.content-why-choose {
    background-color: #f9faff;
    padding: 80px 20px;
}

.content-why-choose .container {
    max-width: 1400px;
    margin: 0 auto;
}

.intro-header {
    text-align: center;
    margin-bottom: 60px;
}

.intro-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2a2c2f;
    margin: 0;
}

/* Main Content Layout */
.main-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* Image Placeholder (Left Column) */
.image-placeholder {
    flex: 1;
    position: sticky;
    top: 60px;
    background-color: #e6f0ff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    max-width: 480px;
    max-height: 480px;
    margin: 0 auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease-in-out;
}

/* Accordion (Right Column) */
.feature-accordion {
    flex: 1.2;
    display: flex;
    flex-direction: column;
}

.accordion-item {
    border-left: 4px solid #e0e0e0;
    padding: 0 24px;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.accordion-item:not(:last-child) {
    padding-bottom: 24px;
    margin-bottom: 24px;
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.accordion-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 500;
    color: #666;
    transition: color 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, margin-top 0.5s ease-out;
}

.accordion-content p {
    margin: 0;
    padding-top: 12px;
    color: #666;
    line-height: 1.7;
}

/* Active State Styling */
.accordion-item.active {
    border-left-color: #1460be;
}

.accordion-item.active .accordion-header h3 {
    color: #2a2c2f;
    font-weight: 600;
}

.accordion-item.active .accordion-content {
    max-height: 300px;
    margin-top: 8px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-content {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .image-placeholder {
        position: relative;
        top: 0;
        width: 100%;
        max-width: 350px;
        max-height: 350px;
    }

    .feature-accordion {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .content-why-choose {
        padding: 60px 15px;
    }

    .intro-header h2 {
        font-size: 1.8rem;
    }

    .accordion-header h3 {
        font-size: 1.2rem;
    }

    .image-placeholder {
        max-width: 280px;
        max-height: 280px;
    }

    .main-content {
        gap: 30px;
    }
}
