        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.6;
            color: #333333;
            background-color: #f9f9f9;
            padding: 15px; /* Desktop padding */
            -webkit-text-size-adjust: 100%;
        }
        .policy-container {
            max-width: 800px;
            margin: 20px auto;
            background: #ffffff;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            border: 1px solid #e0e0e0;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }
        h1 {
            color: #2c3e50;
            font-size: 1.8rem;
            line-height: 1.3;
            border-bottom: 3px solid #2c3e50;
            padding-bottom: 10px;
            margin-bottom: 10px;
        }
        .date {
            font-style: italic;
            color: #666666;
            margin-bottom: 25px;
            font-size: 0.95rem;
        }
        h2 {
            color: #2c3e50;
            font-size: 1.35rem;
            margin-top: 25px;
            margin-bottom: 12px;
            border-bottom: 1px solid #e0e0e0;
            padding-bottom: 5px;
        }
        h3 {
            color: #475569;
            font-size: 1.1rem;
            margin-top: 18px;
            margin-bottom: 8px;
        }
        p {
            margin-bottom: 14px;
            font-size: 1rem;
            text-align: left;
        }
        ul {
            padding-left: 20px;
            margin-bottom: 14px;
        }
        li {
            margin-bottom: 6px;
            font-size: 1rem;
        }
        a {
            color: #3498db;
            text-decoration: none;
            word-break: break-all;
        }
        a:hover {
            text-decoration: underline;
        }
        .contact-box {
            background: #f1f5f9;
            padding: 15px;
            border-left: 4px solid #2c3e50;
            border-radius: 4px;
            margin-top: 15px;
        }

        /* Mobile Specific Layout Fixes */
        @media (max-width: 600px) {
            body {
                padding: 0px !important; /* Removes body padding on mobile */
            }
            .policy-container {
                padding: 15px;
                margin: 0px auto !important; /* Fixes top, bottom, and side gaps */
                border-radius: 0px; /* Adapts to full screen layout width */
                border-left: none;
                border-right: none;
            }
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.2rem;
            }
            h3 {
                font-size: 1.05rem;
            }
            p, li {
                font-size: 0.95rem;
            }
        }