/* Container & Resets */
.aia-accordion-container { 
    font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; 
    width: 100%; 
    max-width: 1100px; 
    margin: 0 auto; 
    border-top: 1px solid #dadce0; 
    color: #202124; 
    box-sizing: border-box;
}
.aia-accordion-container * { box-sizing: border-box; }

.aia-row { border-bottom: 1px solid #dadce0; background: #ffffff; }
.aia-header { display: flex; justify-content: space-between; align-items: center; padding: 30px 24px; cursor: pointer; transition: background-color 0.2s ease; }
.aia-header:hover { background-color: #f8f9fa; }
.aia-title-col { width: 30%; font-size: 20px; font-weight: 500; letter-spacing: -0.5px; padding-right: 20px; }
.aia-preview-col { width: 60%; font-size: 16px; color: #5f6368; line-height: 1.5; padding-right: 24px; }
.aia-toggle-col { width: 10%; text-align: right; display: flex; justify-content: flex-end; }

/* Toggle Icon */
.aia-toggle-btn { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border: 1px solid #dadce0; border-radius: 50%; color: #5f6368; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.aia-row.is-open .aia-toggle-btn { transform: rotate(45deg); border-color: #1a73e8; color: #1a73e8; background-color: #e8f0fe; }

/* Expanded Content Area */
.aia-content { display: none; padding: 0 24px 40px 24px; }
.aia-content-body { display: flex; justify-content: space-between; align-items: stretch; padding-top: 20px; }
.aia-left-panel { width: 30%; padding-right: 30px; display: flex; align-items: flex-start; }

/* Blue Button matched to screenshot */
.aia-btn { 
    display: inline-flex; 
    align-items: center; 
    background-color: #1a73e8; 
    color: #ffffff !important; 
    padding: 12px 24px; 
    font-size: 15px; 
    font-weight: 600; 
    text-decoration: none !important; 
    border-radius: 4px; 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
    margin-top: 10px;
}
.aia-btn:hover { 
    background-color: #1557b0; 
    box-shadow: 0 4px 10px rgba(26,115,232,0.3); 
    transform: translateY(-1px); 
}
.aia-btn svg { 
    margin-left: 12px; 
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
}
.aia-btn:hover svg {
    transform: translate(3px, -3px); 
}

/* Middle Panel with Vertical Divider */
.aia-mid-panel { 
    width: 40%; 
    padding-left: 40px; 
    padding-right: 20px; 
    border-left: 1px solid #dadce0; /* Matches the vertical line in the design */
}
.aia-stat-box { display: flex; align-items: flex-start; margin-bottom: 24px; }
.aia-stat-number { font-size: 48px; font-weight: 400; color: #1a73e8; line-height: 1; margin-right: 16px; letter-spacing: -1.5px; }
.aia-stat-text { font-size: 14px; font-weight: 500; color: #202124; line-height: 1.4; padding-top: 4px; }

/* List Styling */
.aia-list-wrapper ul { list-style: none; padding: 0; margin: 0; }
.aia-list-wrapper ul li { padding: 16px 0; font-size: 15px; color: #3c4043; border-bottom: 1px solid #f1f3f4; }
.aia-list-wrapper ul li:first-child { padding-top: 0; }
.aia-list-wrapper ul li:last-child { border-bottom: none; padding-bottom: 0; }

/* Right Panel / Image */
.aia-right-panel { width: 25%; text-align: right; }
.aia-right-panel img { max-width: 100%; height: auto; border-radius: 4px; box-shadow: 0 1px 2px 0 rgba(60,64,67,0.3), 0 1px 3px 1px rgba(60,64,67,0.15); object-fit: cover; }

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .aia-header { flex-wrap: wrap; }
    .aia-title-col { width: 100%; margin-bottom: 8px; }
    .aia-preview-col { width: 85%; }
    .aia-toggle-col { width: 15%; }
    .aia-content-body { flex-direction: column; }
    .aia-left-panel { width: 100%; padding-right: 0; margin-bottom: 20px; }
    .aia-mid-panel { width: 100%; padding-left: 0; border-left: none; margin-bottom: 30px; }
    .aia-right-panel { width: 100%; text-align: left; }
}