
    /* Privacy Policy Page Specific Styles */
    .privacy-header {
        background: linear-gradient(135deg, #f8f7f6, #f0eeec);
        color: white;
        padding: 50px 20px;
        text-align: center;
        margin-bottom: 40px;
        position: relative;
        overflow: hidden;
    }

    .privacy-header:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,100 L100,0 L100,100 Z" fill="rgba(255,255,255,0.1)"/></svg>');
        background-size: cover;
    }
.header-right{
        display:none !important;
    }
    .privacy-header-content {
        max-width: 800px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .privacy-header h1 {
        font-size: 32px;
        margin-bottom: 10px;
        color:black;
    }

    .privacy-header p {
        font-size: 16px;
        opacity: 0.9;
        color:black;
    }

    .last-updated {
        margin-top: 20px;
        font-size: 14px;
        opacity: 0.8;
        color:black;
    }
.main-container {
    max-width: 50%;
    margin: 0 auto;
    padding: 0 20px;
    border-radius: 0;

    display: flex;
    justify-content: center; /* horizontal */
    align-items: center;     /* vertical */
    min-height: 100vh;
}

    .privacy-content {
        background:none;
        padding: 40px;
       
    }

    .privacy-section {
        margin-bottom: 40px;
        padding-bottom: 30px;
        border-bottom: 1px solid #eee;
    }

    .privacy-section:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .privacy-section h2 {
        color: #2c3e50;
        font-size: 22px;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .privacy-section h2 i {
        color: #f39c12;
        font-size: 20px;
    }

    .privacy-section h3 {
        color: #34495e;
        font-size: 18px;
        margin: 20px 0 10px;
    }

    .privacy-section p {
        color: #555;
        line-height: 1.7;
        margin-bottom: 15px;
        font-size: 15px;
    }

    .privacy-section ul, 
    .privacy-section ol {
        margin: 15px 0 15px 30px;
        color: #555;
        line-height: 1.7;
    }

    .privacy-section li {
        margin-bottom: 8px;
    }

    .privacy-section strong {
        color: #f39c12;
        font-weight: 600;
    }

    .privacy-note {
        background: #f8f9fa;
        padding: 20px;
        margin: 20px 0;
        border-left: 3px solid #f39c12;
    }

    .privacy-note p:last-child {
        margin-bottom: 0;
    }

    .privacy-table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
    }

    .privacy-table th,
    .privacy-table td {
        padding: 12px;
        text-align: left;
        border: 1px solid #ddd;
    }

    .privacy-table th {
        background: #f8f9fa;
        font-weight: 600;
        color: #2c3e50;
    }

    .privacy-table td {
        color: #555;
    }

    .data-badge {
        display: inline-block;
        background: #e8f5e9;
        color: #27ae60;
        padding: 3px 8px;
        font-size: 12px;
        font-weight: 600;
        margin-right: 5px;
    }

    .cookie-table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 12px;
        text-align: left;
        border: 1px solid #ddd;
    }

    .cookie-table th {
        background: #f8f9fa;
        font-weight: 600;
        color: #2c3e50;
    }

    @media (max-width: 768px) {
        .privacy-header h1 {
            font-size: 26px;
        }
        
        .privacy-content {
            padding: 25px;
        }
        .header-right{
        display:none !important;
    }
        .privacy-section h2 {
            font-size: 20px;
        }
        
        .privacy-section h3 {
            font-size: 16px;
        }
        
        .privacy-section p,
        .privacy-section li {
            font-size: 14px;
        }
        
        .privacy-table,
        .cookie-table {
            display: block;
            overflow-x: auto;
        }
    }