/* Legal Pages Styling - Privacy Policy & Terms */

/* Active menu state for WordPress menus (header + offcanvas) */


.privacy-content {
    padding: 80px 0;
    background: #fff;
}

@media (max-width: 768px) {
    .privacy-content {
        padding: 50px 0;
    }
}

.privacy-card {
    background: #fff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .privacy-card {
        padding: 30px 20px;
    }
}

.privacy-section {
    margin-bottom: 40px;
}

.privacy-section:last-child {
    margin-bottom: 0;
}

.privacy-section h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--rs-title-primary, #1F1F1F);
    margin-bottom: 15px;
    margin-top: 30px;
}

.privacy-section h3:first-child {
    margin-top: 0;
}

.privacy-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--rs-text-primary, #616161);
    margin-bottom: 15px;
}

.privacy-section ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.privacy-section ul li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--rs-text-primary, #616161);
    padding-left: 25px;
    margin-bottom: 10px;
    position: relative;
}

.privacy-section ul li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: var(--rs-theme-red, #B71C1C);
    font-size: 20px;
}

.privacy-contact {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.privacy-contact li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--rs-text-primary, #616161);
    margin-bottom: 10px;
    padding-left: 0;
}

.privacy-contact li:before {
    display: none;
}

.privacy-contact li span {
    font-weight: 600;
    color: var(--rs-title-primary, #1F1F1F);
}

.privacy-contact li a {
    color: var(--rs-theme-red, #B71C1C);
    text-decoration: none;
    transition: all 0.3s ease;
}

.privacy-contact li a:hover {
    color: var(--rs-black, #1A1A1A);
    text-decoration: underline;
}

/* Page Hero for Legal Pages */
.rs-page-hero.legal-page-hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #023B4A 0%, #507A7C 100%);
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .rs-page-hero.legal-page-hero {
        padding: 100px 0 60px;
    }
}

.rs-page-hero.legal-page-hero h1 {
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .rs-page-hero.legal-page-hero h1 {
        font-size: 36px;
    }
}

.rs-page-hero.legal-page-hero .last-updated {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-top: 10px;
}

/* Breadcrumb for Legal Pages */
.rs-breadcrumb {
    padding: 20px 0;
    background: var(--rs-bg-primary, #F7F7F7);
}

.rs-breadcrumb ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.rs-breadcrumb ul li {
    font-size: 14px;
    color: var(--rs-text-primary, #616161);
}

.rs-breadcrumb ul li:before {
    display: none;
}

.rs-breadcrumb ul li a {
    color: var(--rs-text-primary, #616161);
    text-decoration: none;
    transition: all 0.3s ease;
}

.rs-breadcrumb ul li a:hover {
    color: var(--rs-theme-red, #B71C1C);
}

.rs-breadcrumb ul li:not(:last-child):after {
    content: "/";
    margin: 0 10px;
    color: var(--rs-text-secondary, #CBCCCD);
}

.rs-breadcrumb ul li:last-child {
    color: var(--rs-theme-red, #B71C1C);
    font-weight: 500;
}
