/* --- Root Variables & Reset --- */
:root {
    --primary-blue: #0066B2;
    --light-blue: #49C5F1;
    --purple: #7B2E8E;
    --green-success: #4CAF50;
    --dark: #1a1a1a;
    --font-family: 'Quicksand', sans-serif;
    --dark-bg: #0a0a0a;
    --input-bg: #1a1a1a;
    --text-gray: #aaa;
    --white: #ffffff;
    --bc-blue: #f0f5f9;
}

/* ==========================================================================
    Privacy Policy Page Styles
   ========================================================================== */

/* --- Main Page Wrapper --- */
.privacy-main-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    font-family: var(--font-family);
}

/* --- Hero Section --- */
.privacy-hero-section {
    padding: 0 20px;
    margin-top: 120px; 
}

.privacy-hero-container {
    width: 100%;
}

.privacy-hero-card {
    height: 350px;
    border-radius: 60px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    position: relative;
}

/* Centering the content and breadcrumbs */
.privacy-hero-content {
    z-index: 2;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.privacy-hero-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 700;
    letter-spacing: -1.5px;
    margin: 0;
    line-height: 1.1;
    text-transform: capitalize;
}

/* --- Breadcrumb Styling --- */
.privacy-breadcrumb {
    font-size: 16px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 8px 25px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.privacy-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.privacy-breadcrumb a:hover {
    color: var(--green-success);
}

.privacy-breadcrumb .privacy-separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

.privacy-breadcrumb .privacy-current {
    color: var(--green-success); 
    font-weight: 600;
}

/* --- Helper Class --- */
.policy-section-wrapper {
    padding: 60px 20px;
}

/* ==========================================================================
    Responsive Design
   ========================================================================== */

@media (max-width: 1024px) {
    .privacy-hero-section {
        padding: 0 15px;
        margin-top: 100px;
        margin-bottom: -60px;
    }

    .privacy-hero-card {
        height: 350px;
        border-radius: 40px;
    }
    
    .privacy-hero-title {
        font-size: 40px;
    }
    
    .privacy-breadcrumb {
        font-size: 14px;
        padding: 6px 20px;
    }
}

@media (max-width: 480px) {
    .privacy-hero-card {
        height: 300px;
        border-radius: 30px;
    }

    .privacy-hero-title {
        font-size: 32px;
    }

    .privacy-breadcrumb {
        gap: 8px;
        padding: 5px 15px;
    }

    .privacy-breadcrumb .privacy-separator {
        font-size: 12px;
    }
}
/* --- Policy Content Styling --- */
.policy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px; /* Added padding so text doesn't touch screen edges on mobile */
    color: var(--dark);
    line-height: 1.8;
}

.policy-block {
    margin-bottom: 40px;
}

.policy-block h2 {
    color: var(--primary-blue);
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.policy-block p, .policy-block li {
    color: #555;
    font-size: 17px;
}

.policy-block ul {
    padding-left: 20px;
    list-style-type: circle;
}

.policy-block li {
    margin-bottom: 8px;
}

/* Grid layout for shorter sections */
.policy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.policy-divider {
    border: 0;
    border-top: 1px solid #eee;
    margin: 50px 0;
}

.policy-footer-info {
    text-align: center;
    background: var(--bc-blue);
    padding: 30px;
    border-radius: 20px;
}

.last-updated {
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 10px;
}

/* --- Mobile Responsiveness (Max-width: 768px) --- */
@media (max-width: 768px) {



    /* --- Policy Content Styling --- */
.policy-container {
   margin-top: 20px;
}

    .policy-grid {
        /* Stack the 2-column grid into 1 column */
        grid-template-columns: 1fr; 
        gap: 20px;
    }

    .policy-block h2 {
        font-size: 20px; /* Slightly smaller headers for mobile */
    }

    .policy-block p, .policy-block li {
        font-size: 16px; /* Optimized reading size for phones */
    }

    .policy-divider {
        margin: 30px 0;
    }

    .policy-footer-info {
        padding: 20px;
        border-radius: 15px;
    }
}