/* ==========================================
   BharatShramSetu - Legal Pages
   Privacy Policy & Terms and Conditions
========================================== */

:root {
    --primary: #0B2E63;
    --secondary: #FF6B00;
    --text: #2f3a4d;
    --heading: #0B2E63;
    --bg: #f5f7fb;
    --white: #ffffff;
    --border: #e5eaf2;
    --shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
}

/* Page */

.legal-page {
    background: var(--bg);
    padding: 80px 0;
}

.legal-page .container {
    width: min(1100px, 92%);
    margin: 0 auto;
}

/* ==========================================
   Header
========================================== */

.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-header .section-eyebrow {
    display: inline-block;
    background: rgba(255, 107, 0, .1);
    color: var(--secondary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 18px;
    border-radius: 30px;
    margin-bottom: 18px;
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--heading);
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-header p {
    color: #6c7a92;
    font-size: 16px;
}

/* ==========================================
   Content Card
========================================== */

.legal-page section {
    background: var(--white);
    border-radius: 16px;
    padding: 35px;
    margin-bottom: 25px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: .3s ease;
}

.legal-page section:hover {
    transform: translateY(-3px);
}

/* ==========================================
   Headings
========================================== */

.legal-page h2 {
    color: var(--primary);
    font-size: 1.45rem;
    margin-bottom: 18px;
    position: relative;
    padding-left: 18px;
}

.legal-page h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 24px;
    border-radius: 10px;
    background: var(--secondary);
}

/* ==========================================
   Paragraph
========================================== */

.legal-page p {
    color: var(--text);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 18px;
}

/* ==========================================
   Lists
========================================== */

.legal-page ul {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.legal-page li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: var(--text);
    line-height: 1.7;
}

.legal-page li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--secondary);
    font-weight: bold;
}

/* ==========================================
   Links
========================================== */

.legal-page a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    transition: .25s;
}

.legal-page a:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* ==========================================
   Contact Box
========================================== */

.legal-page section:last-child {
    background: linear-gradient(135deg, #0B2E63, #174b93);
    color: #fff;
}

.legal-page section:last-child h2,
.legal-page section:last-child p,
.legal-page section:last-child strong {
    color: #fff;
}

.legal-page section:last-child a {
    color: #FFD8B8;
}

.legal-page section:last-child a:hover {
    color: #fff;
}

/* ==========================================
   Smooth Scroll
========================================== */

html {
    scroll-behavior: smooth;
}

/* ==========================================
   Responsive
========================================== */

@media (max-width:991px){

    .legal-page{
        padding:60px 0;
    }

    .legal-page section{
        padding:28px;
    }

}

@media (max-width:768px){

    .page-header{
        margin-bottom:35px;
    }

    .page-header h1{
        font-size:2rem;
    }

    .legal-page section{
        padding:24px;
        border-radius:12px;
    }

    .legal-page h2{
        font-size:1.2rem;
    }

    .legal-page p,
    .legal-page li{
        font-size:15px;
    }

}

@media (max-width:480px){

    .legal-page{
        padding:45px 0;
    }

    .legal-page section{
        padding:20px;
    }

    .page-header .section-eyebrow{
        font-size:11px;
        padding:7px 14px;
    }

    .page-header h1{
        font-size:1.7rem;
    }

}