/* STI Accordion CSS */

.sti-accordion-wrapper {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.sti-accordion-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(29, 43, 104, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(29, 43, 104, 0.1);
}

.sti-accordion-item:hover {
    box-shadow: 0 4px 15px rgba(29, 43, 104, 0.12);
}

.sti-accordion-header {
    background: linear-gradient(135deg, #1d2b68 0%, #2a3f8f 100%);
    color: white;
    padding: 16px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.sti-accordion-header:hover {
    background: linear-gradient(135deg, #2a3f8f 0%, #1d2b68 100%);
}

.sti-accordion-title {
    font-size: 1.05em;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sti-accordion-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #ea1b75 0%, #ff5001 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sti-accordion-icon svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.sti-accordion-toggle {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.sti-accordion-toggle svg {
    width: 16px;
    height: 16px;
    fill: white;
    transition: transform 0.3s ease;
}

.sti-accordion-item.active .sti-accordion-toggle {
    background: rgba(255, 255, 255, 0.25);
}

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

.sti-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #f8f9fa;
}

.sti-accordion-item.active .sti-accordion-content {
    max-height: 2000px;
}

.sti-accordion-body {
    padding: 20px;
}

.sti-accordion-body p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 12px;
    font-size: 0.95em;
}

.sti-accordion-body p:last-child {
    margin-bottom: 0;
}

.sti-accordion-body strong {
    color: #1d2b68;
    font-weight: 600;
}

.sti-accordion-highlight-box {
    background: linear-gradient(135deg, rgba(234, 27, 117, 0.08) 0%, rgba(255, 80, 1, 0.08) 100%);
    border-left: 3px solid #ea1b75;
    padding: 15px;
    border-radius: 6px;
    margin: 15px 0;
}

.sti-accordion-highlight-box p {
    margin-bottom: 8px;
}

.sti-accordion-highlight-box p:last-child {
    margin-bottom: 0;
}

.sti-accordion-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #1d2b68;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9em;
    padding: 10px 20px;
    background: white;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-top: 12px;
    box-shadow: 0 2px 8px rgba(29, 43, 104, 0.08);
}

.sti-accordion-link:hover {
    background: linear-gradient(135deg, #ea1b75 0%, #ff5001 100%);
    color: white;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(234, 27, 117, 0.3);
}

.sti-accordion-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Responsive */
@media (max-width: 768px) {
    .sti-accordion-header {
        padding: 14px 16px;
    }

    .sti-accordion-title {
        font-size: 0.95em;
        gap: 10px;
    }

    .sti-accordion-icon {
        width: 32px;
        height: 32px;
    }

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

    .sti-accordion-body {
        padding: 16px;
    }

    .sti-accordion-body p {
        font-size: 0.9em;
    }
}
