 .accordion {
     max-width: 800px;
     margin: 0 auto;
 }

 .accordion-item {
     position: relative;
     background: white;
     margin-bottom: 10px;
     border-radius: 8px;
     overflow: hidden;
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
 }

 .accordion-header {
     display: flex;
     align-items: center;
     gap: 15px;
     width: 100%;
     padding: 15px;
     background: white;
     border: none;
     cursor: pointer;
     transition: background-color 0.3s;
 }

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

 .accordion-header img {
     width: 80px;
     height: 60px;
     object-fit: cover;
     border-radius: 4px;
     flex-shrink: 0;
 }

 .accordion-header span {
     color: #587e11;
     font-weight: 600;
     flex: 1;
     text-align: left;
 }

 .accordion-icon {
     width: 24px;
     height: 24px;
     position: absolute;
     right: 1rem;
     flex-shrink: 0;
 }

 .accordion-icon::before,
 .accordion-icon::after {
     content: '';
     position: absolute;
     background-color: #666;
     transition: transform 0.3s;
 }

 .accordion-icon::before {
     width: 16px;
     height: 2px;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
 }

 .accordion-icon::after {
     width: 2px;
     height: 16px;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
 }

 .accordion-header[aria-expanded="true"] .accordion-icon::after {
     transform: translate(-50%, -50%) rotate(90deg);
     opacity: 0;
 }

 .accordion-content {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.3s ease-out;
 }

 .accordion-content.active {
     max-height: 1000px;
     transition: max-height 0.5s ease-in;
 }

 .accordion-body {
     padding: 20px;
     border-top: 1px solid #eee;
 }

 .accordion-body strong {
     color: #333;
 }