.accordion-section {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.accordion-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.accordion-image {
    position: sticky;
    top: 100px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.accordion-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Accordion Item */
.accordion-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s;
}

.accordion-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Accordion Header */
.accordion-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    cursor: pointer;
    transition: background 0.3s;
    user-select: none;
}

.accordion-header:hover {
    background: #f8f9fa;
}

.accordion-icon {
    flex-shrink: 0;
}

.accordion-header h3 {
    flex: 1;
    font-size: 1.2rem;
    color: #4a5568;
    font-weight: 600;
    margin: 0;
}

.accordion-toggle {
    font-size: 1.8rem;
    color: #667eea;
    font-weight: 300;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s;
}

/* Accordion Body */
.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 1.5rem;
}

.accordion-body p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Active State */
.accordion-item.active .accordion-body {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.accordion-item.active .accordion-toggle {
    transform: rotate(180deg);
}

.accordion-item.active .accordion-header {
    background: #f8f9fa;
}

/* Responsive Design */
@media (max-width: 968px) {
    .accordion-container {
        grid-template-columns: 1fr;
    }

    .accordion-image {
        position: relative;
        top: 0;
        max-height: 400px;
    }

    .accordion-image img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .accordion-section {
        padding: 3rem 1rem;
    }

    .accordion-header {
        padding: 1.2rem;
    }

    .accordion-header h3 {
        font-size: 1rem;
    }

    .accordion-icon svg {
        width: 40px;
        height: 40px;
    }

    .accordion-body {
        font-size: 0.95rem;
    }

    .accordion-image {
        max-height: 300px;
    }

    .accordion-image img {
        height: 300px;
    }
}