  /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #20808D;
            --primary-dark: #1a6975;
            --primary-light: #2a97a6;
            --secondary-color: #2c3e50;
            --accent-color: #e74c3c;
            --light-color: #f8fafc;
            --dark-color: #1e293b;
            --gray-color: #64748b;
            --light-gray: #e2e8f0;
            --border-color: #cbd5e1;
            --success-color: #10b981;
            --warning-color: #f59e0b;
            --danger-color: #ef4444;
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --border-radius: 8px;
            --transition: all 0.3s ease;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: var(--dark-color);
            background-color: var(--light-color);
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        ul, ol {
            list-style-position: inside;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: white;
            box-shadow: var(--shadow-sm);
            z-index: 1000;
            transition: var(--transition);
        }

        .header.scrolled {
            box-shadow: var(--shadow-md);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }

        .logo-link {
            display: flex;
            align-items: center;
        }

        .logo {
            height: 50px;
            width: 200px;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .nav-links a {
            color: var(--secondary-color);
            font-weight: 500;
            font-size: 16px;
            padding: 5px 0;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--primary-color);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: var(--transition);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a.active {
            color: var(--primary-color);
        }

        .nav-links a.active::after {
            width: 100%;
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            color: var(--secondary-color);
        }

        .mobile-menu-toggle svg {
            width: 24px;
            height: 24px;
        }

        /* Hero Section */
        .privacy-hero {
            padding: 140px 0 60px;
            background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
            color: white;
            text-align: center;
        }

        .privacy-hero h1 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .privacy-hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }

        .privacy-meta {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            font-size: 0.9rem;
            opacity: 0.8;
        }

        .privacy-meta svg {
            width: 16px;
            height: 16px;
        }

 /* Policy Content */
        .policy-content {
            background: white;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            margin-bottom: 40px;
        }

        .policy-section {
            margin-bottom: 30px;
        }

        .policy-section:last-child {
            margin-bottom: 0;
        }

        .policy-section h2 {
            color: #20808D;
            font-size: 20px;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e8f4f8;
        }

        .policy-section p {
            margin-bottom: 15px;
            color: #444;
            line-height: 1.8;
        }

        .policy-section ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }

        .policy-section li {
            margin-bottom: 8px;
            color: #444;
            line-height: 1.6;
        }

        /* Simple Box */
        .simple-box {
            background: #f0f9ff;
            border-left: 4px solid #20808D;
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }

        .simple-box h3 {
            color: #20808D;
            margin-bottom: 10px;
            font-size: 18px;
        }

        /* Contact Info */
        .contact-info {
            background: #f8f9fa;
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            padding: 30px;
            margin-top: 40px;
            text-align: center;
        }

        .contact-info h3 {
            color: #20808D;
            margin-bottom: 20px;
            font-size: 20px;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 15px;
            align-items: center;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #444;
        }

        .contact-item a {
            color: #20808D;
            text-decoration: none;
            font-weight: 500;
        }

        .contact-item a:hover {
            text-decoration: underline;
        }

        /* Action Buttons */
        .action-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            margin-top: 30px;
            flex-wrap: wrap;
        }

        .btn {
            padding: 12px 24px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 16px;
        }

        .btn-primary {
            background: #20808D;
            color: white;
        }

        .btn-primary:hover {
            background: #1a6975;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(32, 128, 141, 0.2);
        }

        .btn-secondary {
            background: #f0f9ff;
            color: #20808D;
            border: 1px solid #20808D;
        }

        .btn-secondary:hover {
            background: #e8f4f8;
            transform: translateY(-2px);
        }
        /* Footer */
.tv-footer {
    background-color: #13343b;
    color: rgba(255, 255, 255, 0.9);
    padding: 32px 16px;
    margin-bottom: 0;
}

.tv-footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.tv-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.tv-footer-section h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
    line-height: 1.2;
}

.tv-footer-logo {
    font-size: 30px;
    font-weight: 600;
    color: #32b8c6;
    margin-bottom: 16px;
}

.tv-footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 16px;
}

.tv-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tv-footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}

.tv-footer-links a:hover {
    color: #32b8c6;
}

.tv-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tv-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tv-contact-item svg {
    width: 20px;
    height: 20px;
    stroke: #32b8c6;
    flex-shrink: 0;
}

.tv-contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}

.tv-contact-item a:hover {
    color: #32b8c6;
}

.tv-footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.tv-footer-bottom a {
    color: #32b8c6;
    text-decoration: underline;
}

        /* Mobile Bottom Navigation */
        .mobile-bottom-nav {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: white;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
            z-index: 999;
        }

        .mobile-nav-container {
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
        }

        .mobile-nav-link {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
            color: var(--gray-color);
            font-size: 12px;
            padding: 5px;
        }

        .mobile-nav-link.active {
            color: var(--primary-color);
        }

        .mobile-nav-link svg {
            width: 22px;
            height: 22px;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .privacy-hero h1 {
                font-size: 2.4rem;
            }
        }

        @media (max-width: 768px) {
            .header-container {
                padding: 12px 15px;
            }

            .nav {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background: white;
                box-shadow: var(--shadow-md);
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: var(--transition);
            }

            .nav.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }

            .nav-links {
                flex-direction: column;
                gap: 0;
                padding: 20px;
            }

            .nav-links li {
                width: 100%;
            }

            .nav-links a {
                display: block;
                padding: 12px 0;
                border-bottom: 1px solid var(--light-gray);
            }

            .nav-links a::after {
                display: none;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .privacy-hero {
                padding: 120px 0 40px;
            }

            .privacy-hero h1 {
                font-size: 2rem;
            }

            .privacy-hero p {
                font-size: 1.1rem;
            }

            .privacy-section h2 {
                font-size: 1.5rem;
            }

            .privacy-section h3 {
                font-size: 1.2rem;
            }

            .cookie-banner {
                width: 95%;
                bottom: 10px;
            }

            .cookie-content {
                flex-direction: column;
                text-align: center;
            }

            .cookie-actions {
                width: 100%;
                justify-content: center;
            }

            .action-buttons {
                flex-direction: column;
            }

            .btn {
                width: 100%;
                justify-content: center;
            }

            .mobile-bottom-nav {
                display: block;
            }

            .whatsapp-float {
                bottom: 70px;
                right: 15px;
                width: 55px;
                height: 55px;
            }

            .whatsapp-float svg {
                width: 26px;
                height: 26px;
            }
        }

        @media (max-width: 480px) {
            .privacy-hero h1 {
                font-size: 1.8rem;
            }

            .privacy-hero p {
                font-size: 1rem;
            }

            .privacy-meta {
                flex-direction: column;
                gap: 10px;
            }

            .privacy-section {
                padding-bottom: 30px;
                margin-bottom: 30px;
            }

            .privacy-section h2 {
                font-size: 1.3rem;
            }

            .notice-box,
            .contact-info-box {
                padding: 20px;
            }

            .data-table {
                display: block;
                overflow-x: auto;
            }

            .footer {
                padding: 40px 0 20px;
            }

            .footer-grid {
                gap: 30px;
            }
        }

        /* Print Styles */
        @media print {
            .header,
            .footer,
            .whatsapp-float,
            .mobile-bottom-nav,
            .action-buttons,
            .cookie-banner {
                display: none !important;
            }

            body {
                background: white;
                color: black;
            }

            .privacy-hero {
                background: white !important;
                color: black !important;
                padding: 20px 0 !important;
            }

            .privacy-hero h1 {
                color: black !important;
            }

            .privacy-content {
                padding: 20px 0 !important;
            }

            .privacy-section {
                page-break-inside: avoid;
                border-bottom: 1px solid #ccc !important;
            }

            a {
                color: black !important;
                text-decoration: underline;
            }
        }