
        body {
            background-color: #f5f7fa;
            margin: 0;
            padding: 0;
            font-size: 18px;
            line-height: 1.8;
        }

        .privacy-container {
            max-width: min(1000px, 90%);
            margin: 0 auto;
            padding: 60px 80px;
            font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
            color: #333;
            line-height: 1.7;
            background-color: #ffffff;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-radius: 16px;
            margin-top: 40px;
            margin-bottom: 60px;
        }

        .policy-header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 2px solid #e74c3c;
        }

        .policy-title {
            font-size: 3rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 30px;
            letter-spacing: -0.5px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.05);
            position: relative;
            display: block;
            margin-left: auto;
            margin-right: auto;
            width: fit-content;
        }

        .policy-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 15%;
            width: 70%;
            height: 4px;
            background-color: #e74c3c;
            border-radius: 2px;
        }

        .policy-date {
            color: #7f8c8d;
            font-style: italic;
        }

        .policy-section {
            margin-bottom: 50px;
            padding: 0;
        }

        .section-heading {
            font-size: 1.8rem;
            font-weight: 600;
            color: #2c3e50;
            margin: 60px 0 30px;
            position: relative;
            padding-left: 35px;
            padding-bottom: 15px;
            border-bottom: 1px solid #f1f1f1;
        }

        .section-heading::before {
            content: '';
            position: absolute;
            left: 0;
            top: 12px;
            width: 14px;
            height: 14px;
            background-color: #e74c3c;
            border-radius: 50%;
        }

        html {
            scroll-behavior: smooth;
        }

        .policy-content p {
            margin-bottom: 25px;
            font-size: 18px;
            text-align: left;
            text-indent: 2em;
            padding: 0 5px;
        }

        .policy-content ul {
            padding-left: 0;
            margin: 25px 0;
        }

        .policy-content ul li {
            position: relative;
            padding-left: 35px;
            margin-bottom: 15px;
            list-style: none;
        }

        .policy-content ul li::before {
            content: '\f058';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 2px;
            color: #e74c3c;
            font-size: 18px;
        }

        .table-of-contents {
            background-color: #f9f9f9;
            padding: 30px;
            border-radius: 12px;
            margin-bottom: 60px;
            border-left: 4px solid #2c3e50;
            box-shadow: 0 4px 15px rgba(0,0,0,0.03);
        }

        .table-of-contents h3 {
            margin-top: 0;
            color: #2c3e50;
            font-size: 20px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }

        .table-of-contents ul {
            padding-left: 0;
            columns: 2;
            column-gap: 20px;
        }

        .table-of-contents li {
            margin-bottom: 12px;
            break-inside: avoid;
        }

        .table-of-contents a {
            color: #3498db;
            text-decoration: none;
            transition: all 0.3s;
            padding: 3px 0;
            display: inline-block;
            border-bottom: 1px solid transparent;
        }

        .table-of-contents a:hover {
            color: #e74c3c;
            text-decoration: none;
            border-bottom: 1px solid #e74c3c;
        }

        .footer {
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid #f1f1f1;
            color: #7f8c8d;
            font-size: 14px;
            text-align: center;
        }

        .highlight {
            font-weight: 600;
            color: #2c3e50;
        }

        .important-note {
            background-color: #fef7f5;
            border-left: 4px solid #e74c3c;
            padding: 25px 30px;
            margin: 40px 0;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(231, 76, 60, 0.07);
        }

        @media (max-width: 1024px) {
            .table-of-contents ul {
                columns: 1;
            }
            .privacy-container {
                padding: 60px 40px;
            }
        }

        @media (max-width: 768px) {
            .policy-title {
                font-size: 1.8rem;
            }

            .section-heading {
                font-size: 1.3rem;
            }
        }

        @media (max-width: 480px) {
            .privacy-container {
                max-width: min(900px, 95%);
            }
        }

        @media (max-width: 1024px) {
            .table-of-contents ul {
                columns: 1;
            }
            .privacy-container {
                padding: 50px 40px;
            }
        }

        @media (max-width: 768px) {
            .policy-title {
                font-size: 1.8rem;
            }

            .section-heading {
                font-size: 1.3rem;
            }
        }

        @media (max-width: 480px) {
            .privacy-container {
                padding: 20px 15px;
            }

            .policy-title {
                font-size: 1.5rem;
            }

            .section-heading {
                font-size: 1.2rem;
            }
        }
    