/* Premium Accordion Layout - cf6e5b80 */

.pal-cf6e5b80-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.pal-cf6e5b80-item {
    overflow: hidden;
    transition: background-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
    will-change: transform;
}

.pal-cf6e5b80-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.pal-cf6e5b80-item.pal-cf6e5b80-active {
    transform: translateY(0);
    box-shadow: 0 2px 12px rgba(59, 130, 246, 0.08);
}

/* Header */
.pal-cf6e5b80-header {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 18px;
    cursor: pointer;
    border: none;
    background: #eff4f8 !important;
    text-align: left;
    font-family: inherit;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}


.pal-cf6e5b80-header:focus-visible {
    outline: 2px solid #3b82f6;
    outline-offset: -2px;
    border-radius: 14px;
}

/* Left Icon Box */
.pal-cf6e5b80-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 1;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.pal-cf6e5b80-item:hover .pal-cf6e5b80-icon-box {
    transform: scale(1.05);
}

/* Center Text */
.pal-cf6e5b80-text {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.pal-cf6e5b80-title {
    margin: 0;
    padding: 0;
    line-height: 1.35;
    transition: color 0.3s ease;
}

.pal-cf6e5b80-desc {
    line-height: 1.5;
    margin: 0;
    padding: 0;
	text-wrap:auto;
}

/* Toggle Icon */
.pal-cf6e5b80-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    width: 28px;
    height: 28px;
    margin-left: auto;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
}

.pal-cf6e5b80-toggle-open,
.pal-cf6e5b80-toggle-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.pal-cf6e5b80-toggle-open {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg);
}

.pal-cf6e5b80-toggle-close {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-90deg);
}

/* Active toggle states */
.pal-cf6e5b80-active .pal-cf6e5b80-toggle {
    transform: rotate(180deg);
}

.pal-cf6e5b80-active .pal-cf6e5b80-toggle-open {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}

.pal-cf6e5b80-active .pal-cf6e5b80-toggle-close {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg);
}

/* Body / Content */
.pal-cf6e5b80-body {
    display: none;
    overflow: hidden;
}

.pal-cf6e5b80-content {
    line-height: 1.7;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.4s ease 0.05s, transform 0.4s ease 0.05s;
}

.pal-cf6e5b80-active .pal-cf6e5b80-content {
    opacity: 1;
    transform: translateY(0);
}

.pal-cf6e5b80-content p {
    margin: 0 0 10px;
}

.pal-cf6e5b80-content p:last-child {
    margin-bottom: 0;
}

.pal-cf6e5b80-content ul,
.pal-cf6e5b80-content ol {
    margin: 8px 0;
    padding-left: 20px;
}

.pal-cf6e5b80-content a {
    color: #3b82f6;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.pal-cf6e5b80-content a:hover {
    color: #2563eb;
}

/* Responsive */
@media (max-width: 767px) {
    .pal-cf6e5b80-header {
        gap: 14px;
    }

    .pal-cf6e5b80-text {
        gap: 2px !important;
    }
}
