﻿/* =========================================
   1. GLOBAL VARIABLES & RESET
   ========================================= */
:root {
    --primary-color: #0d1b2a;
    --secondary-color: #1b263b;
    --accent-color: #4361ee;
    --accent-hover: #3f37c9;
    --whatsapp-color: #25D366;
    --complaint-color: #3a86ff;
    --text-light: #e0e1dd;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    overflow-x: hidden;
    padding-bottom: 80px; /* Space for mobile bottom bar */
}

a {
    text-decoration: none;
}

/* =========================================
   2. NAVIGATION BAR
   ========================================= */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

    .navbar-brand i {
        font-size: 1.8rem;
    }

.nav-link {
    color: var(--primary-color);
    font-weight: 500;
    margin-left: 15px;
    transition: color 0.3s;
}

    .nav-link:hover, .nav-link.active {
        color: var(--accent-color);
    }

.nav-btn {
    background-color: var(--accent-color);
    color: white !important;
    padding: 8px 20px;
    border-radius: 50px;
    margin-left: 10px;
}

    .nav-btn:hover {
        background-color: var(--accent-hover);
    }

/* Mobile Nav Adjustments */
@media (max-width: 991px) {
    .navbar-collapse {
        background: white;
        padding: 15px;
        margin-top: 15px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .nav-btn {
        margin-left: 0;
        margin-top: 10px;
        display: inline-block;
        text-align: center;
    }
}

/* =========================================
   3. HERO SECTIONS
   ========================================= */

/* Home Page Hero */
.hero-section {
    background: linear-gradient(135deg, #0b1c36 0%, #1a3b5d 100%);
    color: white;
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(67, 97, 238, 0.25) 0%, rgba(0,0,0,0) 70%);
        border-radius: 50%;
        z-index: 0;
    }

    .hero-section::after {
        content: '';
        position: absolute;
        bottom: -50px;
        left: -50px;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(67, 97, 238, 0.15) 0%, rgba(0,0,0,0) 70%);
        border-radius: 50%;
        z-index: 0;
    }

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #a5b4fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text {
    font-size: 1.15rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* Inner Pages Header (About, Services, Contact, etc.) */
.page-header {
    background: linear-gradient(135deg, #0b1c36 0%, #1a3b5d 100%);
    padding: 120px 0 80px;
    color: white;
    text-align: center;
    position: relative;
}

/* Breadcrumbs */
.breadcrumb {
    justify-content: center;
    background: rgba(255,255,255,0.1);
    display: inline-flex;
    padding: 5px 20px;
    border-radius: 50px;
}

.breadcrumb-item a {
    color: #ccc;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: white;
}


/* =========================================
   4. COMMON COMPONENTS
   ========================================= */

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

    .section-title h6 {
        color: var(--accent-color);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }

    .section-title h2 {
        font-weight: 700;
        color: var(--primary-color);
        font-size: 2.5rem;
    }

/* Buttons */
.btn-primary-custom {
    background-color: var(--accent-color);
    border: none;
    padding: 15px 35px;
    border-radius: 10px;
    font-weight: 600;
    color: white;
    transition: all 0.3s;
}

    .btn-primary-custom:hover {
        background-color: var(--accent-hover);
        transform: translateY(-2px);
    }

/* Trust Badges (Home) */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 20px;
    align-items: center;
    justify-items: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 25px;
    backdrop-filter: blur(5px);
    margin-top: 3rem;
}

.trust-item {
    color: white;
    font-size: 1.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.7;
    transition: all 0.3s;
}

    .trust-item:hover {
        opacity: 1;
        transform: translateY(-2px);
    }

    .trust-item span {
        font-size: 0.65rem;
        margin-top: 8px;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 500;
    }

/* Stats Section */
.stats-section {
    background: #f1f5f9;
    padding: 60px 0;
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

.stats-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    height: 100%;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 5px;
}


/* =========================================
   5. PAGE SPECIFIC STYLES
   ========================================= */

/* --- ABOUT PAGE & SECTIONS --- */
.about-section {
    padding: 80px 0;
    background-color: white;
}

.about-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

    .about-img img {
        width: 100%;
        height: auto;
        transition: transform 0.5s;
    }

    .about-img:hover img {
        transform: scale(1.03);
    }

/* Mission Icons (About Page) */
.mission-icon-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    height: 100%;
    border-bottom: 4px solid var(--accent-color);
    transition: transform 0.3s;
}

    .mission-icon-box:hover {
        transform: translateY(-5px);
    }

    .mission-icon-box i {
        color: var(--accent-color);
        margin-bottom: 20px;
    }

/* Certifications Strip */
.cert-strip {
    background: #e9ecef;
    padding: 40px 0;
    overflow: hidden;
}

.cert-logo {
    font-size: 1.5rem;
    color: #6c757d;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

    .cert-logo:hover {
        opacity: 1;
        color: var(--primary-color);
    }

/* Team Cards */
.team-card {
    background: #ffffff;
    border-radius: 15px; /* Unified radius */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s;
    height: 100%;
    text-align: center; /* Default center for home page style */
    overflow: hidden; /* For about page header style */
}

    .team-card:hover {
        box-shadow: 0 15px 40px rgba(67, 97, 238, 0.1);
        transform: translateY(-5px);
    }

/* About Page specific team styling structure */
.team-header {
    height: 100px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
}

.team-img-wrapper {
    margin-top: -50px;
    text-align: center;
}

.team-img {
    width: 120px; /* Unified size */
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white; /* White border for overlap look */
    box-shadow: 0 0 0 5px rgba(67, 97, 238, 0.1); /* Subtle outer ring */
}

.team-body {
    padding: 20px;
    text-align: center;
}


/* --- SERVICES & FEATURES --- */
.feature-card {
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 0;
        background: var(--accent-color);
        transition: height 0.4s ease;
        z-index: -1;
        opacity: 0.03;
    }

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(67, 97, 238, 0.15);
        border-color: transparent;
    }

        .feature-card:hover::before {
            height: 100%;
        }

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(67, 97, 238, 0.1);
    color: var(--accent-color);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    transition: all 0.3s;
}

.feature-card:hover .feature-icon {
    background: var(--accent-color);
    color: white;
    transform: rotateY(180deg);
}

/* Service Detail Cards (Services Page) */
.service-detail-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
}

    .service-detail-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 50px rgba(67, 97, 238, 0.1);
        border-color: rgba(67, 97, 238, 0.2);
    }

.service-header {
    padding: 30px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 20px;
}

.service-icon-lg {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.service-body {
    padding: 30px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

    .service-list li {
        margin-bottom: 10px;
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 0.95rem;
        color: #555;
    }

        .service-list li i {
            color: var(--whatsapp-color);
            margin-top: 5px;
        }


/* --- PROCESS & TIMELINE --- */

/* Horizontal/Standard Timeline (Home) */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

    .timeline::after {
        content: '';
        position: absolute;
        width: 4px;
        background-color: #e9ecef;
        top: 0;
        bottom: 0;
        left: 50%;
        margin-left: -2px;
        border-radius: 4px;
    }

.timeline-container {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

    .timeline-container.left {
        left: 0;
    }

    .timeline-container.right {
        left: 50%;
    }

    .timeline-container::after {
        content: '';
        position: absolute;
        width: 20px;
        height: 20px;
        right: -10px;
        background-color: white;
        border: 4px solid var(--accent-color);
        top: 25px;
        border-radius: 50%;
        z-index: 1;
    }

    .timeline-container.right::after {
        left: -10px;
    }

.timeline-content {
    padding: 25px;
    background-color: white;
    position: relative;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

    .timeline-content:hover {
        transform: scale(1.02);
    }

/* Vertical Process Timeline (Process Page) */
.process-wrapper {
    position: relative;
    padding: 40px 0;
}

.process-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #e9ecef;
    transform: translateX(-50%);
}

.process-item {
    position: relative;
    margin-bottom: 60px;
    width: 50%;
    padding-right: 50px;
}

    .process-item:nth-child(even) {
        margin-left: auto;
        padding-right: 0;
        padding-left: 50px;
    }

.process-circle {
    position: absolute;
    right: -25px;
    top: 0;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border: 5px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}

.process-item:nth-child(even) .process-circle {
    right: auto;
    left: -25px;
}

.process-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    position: relative;
}

    .process-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    }

    .process-card::before {
        content: '';
        position: absolute;
        top: 20px;
        right: -10px;
        width: 20px;
        height: 20px;
        background: white;
        transform: rotate(45deg);
    }

.process-item:nth-child(even) .process-card::before {
    right: auto;
    left: -10px;
}

/* Checklist Box (Process Page) */
.checklist-box {
    background: #f1f5f9;
    border-radius: 20px;
    padding: 40px;
}

.checklist-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

    .checklist-item i {
        color: var(--whatsapp-color);
        margin-right: 15px;
        font-size: 1.2rem;
    }


/* --- CONTACT & COMPLAINT FORMS --- */

/* Contact Cards */
.contact-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    height: 100%;
    transition: transform 0.3s;
    border-bottom: 3px solid transparent;
}

    .contact-card:hover {
        transform: translateY(-5px);
        border-bottom-color: var(--accent-color);
    }

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(67, 97, 238, 0.1);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

/* Contact Form Box */
.contact-form-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

/* Secure Complaint Form (Complaint Page) */
.complaint-section {
    background: #0d1b2a;
    color: white;
    padding: 80px 0;
    position: relative;
}

.complaint-form-wrapper {
    background: white;
    color: #333;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.form-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.05);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.form-header {
    background: #f1f5f9;
    padding: 25px 40px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.security-badge {
    background: #e0f2fe;
    color: #0369a1;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-body {
    padding: 40px;
}

.form-section-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f8f9fa;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .form-section-title span {
        background: var(--accent-color);
        color: white;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9rem;
    }

.form-control, .form-select {
    padding: 12px 20px;
    border-radius: 10px;
    border: 1px solid #dee2e6;
    background-color: #f8f9fa;
}

    .form-control:focus, .form-select:focus {
        box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.15);
        border-color: var(--accent-color);
        background-color: white;
    }

.file-upload-box {
    border: 2px dashed #dee2e6;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

    .file-upload-box:hover {
        border-color: var(--accent-color);
        background: #eef2ff;
    }

/* Info Card (Sidebar) */
.info-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    margin-bottom: 20px;
    border-left: 4px solid var(--accent-color);
}


/* =========================================
   6. MISC & INTERACTIVE ELEMENTS
   ========================================= */

/* Testimonials */
.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    margin: 20px;
    text-align: center;
    position: relative;
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid #f8f9fa;
}

.quote-icon {
    color: var(--accent-color);
    opacity: 0.2;
    font-size: 3rem;
    position: absolute;
    top: 20px;
    left: 20px;
}

/* Chat Bubble (Floating) */
.chat-bubble {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 20px rgba(67, 97, 238, 0.4);
    z-index: 999;
    cursor: pointer;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(67, 97, 238, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(67, 97, 238, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(67, 97, 238, 0);
    }
}

/* Sticky Bottom Bar */
.sticky-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    display: flex;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
}

.action-btn {
    flex: 1;
    padding: 18px;
    border: none;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    transition: filter 0.2s;
    text-decoration: none;
}

.btn-whatsapp {
    background-color: var(--whatsapp-color);
}

.btn-complaint {
    background-color: var(--complaint-color);
}

.action-btn:hover {
    filter: brightness(1.1);
    color: white;
}


/* =========================================
   7. RESPONSIVE ADJUSTMENTS
   ========================================= */

@media (max-width: 991px) {
    /* Hero Adjustments */
    .hero-section {
        text-align: center;
        padding-top: 130px;
        padding-bottom: 80px;
    }

    .stats-section {
        margin-top: 0;
        padding-top: 50px;
    }

    /* Timeline Fixes (Home) */
    .timeline::after {
        left: 31px;
    }

    .timeline-container {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

        .timeline-container::after {
            left: 21px;
        }

        .timeline-container.right {
            left: 0%;
        }

    /* Process Page Timeline Fixes */
    .process-line {
        left: 30px;
    }

    .process-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 0;
    }

        .process-item:nth-child(even) {
            padding-left: 70px;
            padding-right: 0;
        }

    .process-circle {
        left: 5px;
        right: auto;
    }

    .process-item:nth-child(even) .process-circle {
        left: 5px;
        right: auto;
    }

    .process-card::before {
        left: -10px;
        right: auto;
    }

    /* Form Padding */
    .form-body {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .trust-grid {
        gap: 15px;
        margin-top: 2rem;
    }

    body {
        padding-bottom: 70px;
    }
}

/* =========================================
   7. REVIEWS & MARQUEE
   ========================================= */

/* Review Marquee Container */
.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    /* Fades the edges for a smooth look */
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-content {
    display: inline-block;
    padding-left: 100%; /* Start animation from off-screen */
}

/* Scrolling Animations */
.scroll-left {
    animation: scrollLeft 25s linear infinite;
}

.scroll-right {
    animation: scrollRight 30s linear infinite;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Review Card Styling */
.review-card {
    display: inline-block;
    width: 350px;
    white-space: normal; /* Allows text to wrap inside the card */
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin-right: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    vertical-align: top;
    transition: transform 0.2s;
}

    .review-card:hover {
        transform: scale(1.02);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

.review-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.policy-container {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.policy-nav {
    position: sticky;
    top: 120px;
}

    .policy-nav .nav-link {
        color: #6c757d;
        font-size: 0.95rem;
        padding: 10px 15px;
        border-left: 3px solid transparent;
        margin-left: 0;
        transition: all 0.3s;
    }

        .policy-nav .nav-link:hover,
        .policy-nav .nav-link.active {
            color: var(--accent-color);
            border-left-color: var(--accent-color);
            background: linear-gradient(to right, rgba(67, 97, 238, 0.05), transparent);
        }

.policy-content h2 {
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

    .policy-content h2:first-child {
        margin-top: 0;
    }

.policy-content p, .policy-content ul {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

    .policy-content ul li {
        margin-bottom: 10px;
    }

@media(max-width: 991px) {
    .policy-container {
        padding: 30px;
    }

    .policy-nav {
        display: none;
    }
    /* Hide sidebar on mobile */
}