@import url('../components/service-page-header.css');
main{padding-top: calc(var(--header-height) + 5px);}
/* Copyright & Privacy Policy Page Styles */
.privacy-hero {
    background-color: #1a365d;
    color: white;
    padding: 120px 0 100px;
    position: relative;
    text-align: center;
    margin-top: 0px; /* Space for fixed header */
    overflow: hidden; /* Ensure curve doesn't overflow */
}

.privacy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.95), rgba(26, 54, 93, 0.85));
    z-index: 1;
}

.privacy-hero .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.privacy-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: white;
}

.privacy-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
}
.breadcrumb-container{
   background-color: #f3f4f6 !important;
}
.effective-date {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 30px;
    margin-top: 30px;
    font-size: 0.95rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.policy-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
}

.policy-section {
    margin-bottom: 40px;
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.policy-section h2 {
    color: #1a365d;
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
}

.policy-section h3 {
    color: #2d3748;
    font-size: 1.4rem;
    margin: 25px 0 15px;
}

.policy-section p, .policy-section li {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 15px;
}

.policy-section ul, .policy-section ol {
    padding-left: 25px;
    margin-bottom: 20px;
}

.policy-section li {
    margin-bottom: 8px;
}

.policy-nav {
    position: sticky;
    top: 100px;
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.policy-nav h3 {
    color: #1a365d;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.policy-nav ul {
    list-style: none;
    padding: 0;
}

.policy-nav li {
    margin-bottom: 10px;
}

.policy-nav a {
    color: #4a5568;
    text-decoration: none;
    display: block;
    padding: 8px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.policy-nav a:hover {
    background-color: #f7fafc;
    color: #2b6cb0;
}

.policy-nav .active {
    background-color: #ebf8ff;
    color: #2b6cb0;
    font-weight: 500;
}

.policy-layout {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 30px;
}

.contact-block {
    background-color: #ebf8ff;
    border-radius: 8px;
    padding: 25px;
    margin-top: 30px;
}

.contact-block h3 {
    color: #2b6cb0;
    margin-bottom: 15px;
}

.last-updated {
    text-align: center;
    color: #718096;
    margin-top: 40px;
    font-style: italic;
}

/* Print-friendly styles */
@media print {
    header, footer, .policy-nav {
        display: none;
    }

    .policy-layout {
        display: block;
    }

    .policy-section {
        box-shadow: none;
        padding: 0;
        margin-bottom: 20px;
    }

    body {
        font-size: 12pt;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .policy-layout {
        grid-template-columns: 1fr;
    }

    .policy-nav {
        position: relative;
        top: 0;
    }

    .privacy-hero {
        padding: 100px 0 80px;
        margin-top: 60px;
    }

    .privacy-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .privacy-hero {
        padding: 80px 0 60px;
        margin-top: 50px;
    }

    .privacy-hero h1 {
        font-size: 2rem;
    }

    .privacy-hero p {
        font-size: 1.1rem;
    }

    .effective-date {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .policy-content {
        padding: 40px 15px;
    }

    .policy-section {
        padding: 20px;
    }

    .policy-section h2 {
        font-size: 1.6rem;
    }

    .policy-section h3 {
        font-size: 1.3rem;
    }
} 