/* Privacy Policy Widget Styles */

.rt-privacy-policy-wrapper {
    font-family: Arial, sans-serif;
    background: #f8f9fb;
    margin: 0;
    line-height: 1.7;
    color: #333;
}

/* Main Wrapper */
.rt-privacy-wrapper {
    display: flex;
    max-width: 1200px;
    margin: 40px auto;
    gap: 40px;
    padding: 0 20px;
}

/* Sidebar */
.rt-privacy-sidebar {
    width: 280px;
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
    position: sticky;
    top: 20px;
    height: fit-content;
    flex-shrink: 0;
}

.rt-privacy-sidebar h3 {
    font-size: 18px;
    margin: 0 0 15px 0;
    color: #444;
    font-weight: 600;
}

.rt-privacy-sidebar a {
    display: block;
    padding: 8px 10px;
    color: #0a66c2;
    text-decoration: none;
    border-radius: 4px;
    font-size: 15px;
    transition: all 0.3s ease;
    margin-bottom: 5px;
}

.rt-privacy-sidebar a:hover,
.rt-privacy-sidebar a.active {
    background: #eef6ff;
    color: #004182;
    transform: translateX(3px);
}

/* Main Content */
.rt-privacy-content {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.rt-privacy-last-updated {
    margin: 0 0 20px 0;
    font-size: 15px;
}

.rt-privacy-intro {
    margin-bottom: 20px;
}

.rt-privacy-section {
    margin-top: 30px;
    scroll-margin-top: 100px;
}

.rt-privacy-section h2 {
    margin: 0 0 20px 0;
    font-size: 26px;
    color: #1273de;
    font-weight: 600;
}

.rt-privacy-section h3 {
    font-size: 20px;
    margin: 20px 0 10px 0;
    color: #333;
    font-weight: 600;
}

.rt-privacy-section-content {
    margin-top: 15px;
}

.rt-privacy-section-content p {
    margin: 0 0 15px 0;
}

.rt-privacy-section-content ul {
    margin: 10px 0 15px 20px;
    padding: 0;
}

.rt-privacy-section-content li {
    margin-bottom: 8px;
}

.rt-privacy-divider {
    margin: 30px 0;
    border: 0;
    height: 1px;
    background: #ddd;
}

/* Responsive Design */
@media (max-width: 992px) {
    .rt-privacy-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .rt-privacy-sidebar {
        width: 100%;
        position: static;
    }

    .rt-privacy-content {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .rt-privacy-content {
        padding: 20px;
    }

    .rt-privacy-section h2 {
        font-size: 22px;
    }

    .rt-privacy-section h3 {
        font-size: 18px;
    }
}
