/* Privacy Policy Custom Styles */
.privacy-policy-area {
    background: #f8fafc;
}

/* Page Spacing Override */
.background-light-gray-color.rts-section-gap.bg_light-1 {
    padding-top: 16px !important;
}

/* Sidebar Design */
.legal-sidebar-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.legal-sidebar-card .sidebar-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 15px;
}

.legal-sidebar-card .sidebar-header i {
    font-size: 1.8rem;
}

.legal-sidebar-card .sidebar-header h4 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 800;
    color: #1e293b;
}

.legal-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.legal-menu-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    color: #475569;
    font-weight: 600;
    font-size: 1.3rem; /* Scaled up from 1.05rem */
    transition: all 0.2s ease-in-out;
}

.legal-menu-list li a i {
    font-size: 1.45rem; /* Scaled up from 1.15rem */
    color: #64748b;
    transition: color 0.2s;
}

.legal-menu-list li a:hover,
.legal-menu-list li a.active {
    background: rgba(98, 157, 35, 0.08);
    color: #629d23;
}

.legal-menu-list li a:hover i,
.legal-menu-list li a.active i {
    color: #629d23;
}

.legal-support-box {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e2e8f0;
}

.legal-support-box h5 {
    font-size: 1.35rem; /* Scaled up from 1.1rem */
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 10px;
}

.legal-support-box p {
    font-size: 1.2rem; /* Scaled up from 0.95rem */
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* Header Content Card Design */
.legal-content-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.content-header-main {
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 30px;
    margin-bottom: 40px;
}

.last-update-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f1f5f9;
    color: #475569;
    padding: 6px 14px;
    border-radius: 99px;
    font-size: 1.1rem; /* Scaled up from 0.85rem */
    font-weight: 700;
    margin-bottom: 20px;
}

.last-update-badge i {
    color: #64748b;
}

.legal-content-card .main-title {
    font-size: 2.6rem; /* Scaled up from 2.2rem */
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 15px;
}

.lead-text {
    font-size: 1.55rem; /* Scaled up from 1.25rem */
    line-height: 1.7;
    color: #475569;
    font-weight: 500;
    margin: 0;
}

/* Accordion Custom Layout Design */
.legal-accordion-wrapper {
    margin-top: 25px;
}

.legal-accordion-item {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #ffffff;
    margin-bottom: 25px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

.legal-accordion-item.active {
    border-color: #629d23;
    box-shadow: 0 10px 15px -3px rgba(98, 157, 35, 0.1), 0 4px 6px -2px rgba(98, 157, 35, 0.05);
}

.legal-accordion-header {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 40px;
    text-align: left;
    cursor: pointer;
    font-size: 2.0rem; /* Scaled up from 1.6rem */
    font-weight: 800;
    color: #1e293b;
    position: relative;
    transition: color 0.3s;
}

.legal-accordion-header:hover {
    color: #629d23;
}

.legal-accordion-header .step-num {
    background: rgba(98, 157, 35, 0.1);
    color: #629d23;
    width: 48px; /* Scaled up from 38px */
    height: 48px; /* Scaled up from 38px */
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem; /* Scaled up from 1rem */
    font-weight: 800;
    flex-shrink: 0;
}

.legal-accordion-header .header-text {
    flex-grow: 1;
}

.legal-accordion-header .toggle-icon {
    font-size: 1.5rem;
    color: #64748b;
    transition: transform 0.3s ease, color 0.3s;
    flex-shrink: 0;
}

.legal-accordion-item.active .legal-accordion-header .toggle-icon {
    transform: rotate(180deg);
    color: #629d23;
}

.legal-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.legal-accordion-content-inner {
    padding: 0 40px 40px 108px; /* Perfectly aligned under the title text, skipping step-num width */
}

.legal-accordion-content-inner p {
    font-size: 1.45rem; /* Scaled up from 1.15rem */
    line-height: 1.7;
    color: #475569;
    margin-bottom: 20px;
}

/* Premium Bullet List */
.premium-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.premium-bullet-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.premium-bullet-list li i {
    font-size: 1.65rem; /* Scaled up from 1.35rem */
    margin-top: 4px;
    flex-shrink: 0;
}

.premium-bullet-list li div {
    font-size: 1.4rem; /* Scaled up from 1.1rem */
    line-height: 1.6;
    color: #475569;
}

.premium-bullet-list li div strong {
    color: #1e293b;
}

/* Highlight Info Box */
.highlight-info-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(98, 157, 35, 0.05);
    border: 1px dashed rgba(98, 157, 35, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
}

.highlight-info-box i {
    font-size: 2.1rem; /* Scaled up from 1.75rem */
    flex-shrink: 0;
    margin-top: 4px;
}

.highlight-info-box div {
    font-size: 1.45rem; /* Scaled up from 1.15rem */
    line-height: 1.6;
    color: #334155;
}

/* CSS smooth scroll to sections */
html {
    scroll-behavior: smooth;
}

/* Sidebar sticky scrolling offset compensation */
.legal-accordion-item {
    scroll-margin-top: 130px;
}

@media (max-width: 991px) {
    .legal-content-card {
        padding: 30px;
    }
    .legal-sidebar-card {
        margin-bottom: 30px;
    }
    .legal-accordion-header {
        padding: 20px;
        font-size: 1.6rem;
    }
    .legal-accordion-content-inner {
        padding: 0 20px 20px 20px;
    }
}
