
        /* Base & Typography - Enforcing minimum 16px font size */
        :root {
            --primary-color: #d32f2f;
            --secondary-color: #1a252f;
            --text-main: #333333;
            --text-muted: #555555;
            --bg-light: #f8fafc;
            --border-color: #e2e8f0;
            --alert-bg: #fff3cd;
            --alert-text: #856404;
        }
        
        html {
            font-size: 16px;
        }

        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.65;
            color: var(--text-main);
            margin: 0;
            padding: 0;
            background-color: #ffffff;
        }

        h1, h2, h3, h4 {
            color: var(--secondary-color);
            margin-bottom: 0.6em;
            line-height: 1.3;
        }

        a {
            color: var(--primary-color);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        a:hover {
            color: #b71c1c;
            text-decoration: underline;
        }
        
        /* Layout */
        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 50px 20px;
        }

        .policy-header {
            text-align: center;
            margin-bottom: 50px;
            padding-bottom: 25px;
            border-bottom: 3px solid var(--primary-color);
        }

        .policy-header h1 {
            font-size: 2.2rem;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .policy-header p {
            font-size: 1.125rem;
            color: var(--text-muted);
            font-weight: 500;
        }

        /* Company Intro Section */
        .brand-intro {
            background-color: var(--secondary-color);
            color: #ffffff;
            padding: 35px 40px;
            border-radius: 8px;
            margin-bottom: 40px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .brand-intro h2 {
            color: #ffffff;
            font-size: 1.75rem;
            margin-top: 0;
            border-bottom: 1px solid rgba(255,255,255,0.2);
            padding-bottom: 15px;
        }

        .brand-intro p {
            font-size: 1.05rem;
            color: #e0e0e0;
        }
        
        /* Content Sections */
        .policy-section {
            background: var(--bg-light);
            padding: 35px 40px;
            border-radius: 8px;
            margin-bottom: 35px;
            border: 1px solid var(--border-color);
        }

        .policy-section h2 {
            font-size: 1.6rem;
            color: var(--primary-color);
            border-bottom: 2px solid var(--border-color);
            padding-bottom: 12px;
            margin-top: 0;
        }

        .policy-list {
            list-style-type: disc;
            padding-left: 25px;
        }

        .policy-list li {
            margin-bottom: 15px;
            font-size: 1rem;
        }

        .policy-list strong {
            color: var(--secondary-color);
        }

        /* Callouts and Alerts */
        .reality-check-box {
            background-color: var(--alert-bg);
            border-left: 5px solid #ffc107;
            padding: 20px 25px;
            border-radius: 0 8px 8px 0;
            margin: 25px 0;
        }

        .reality-check-box p {
            margin: 0;
            color: var(--alert-text);
            font-size: 1.05rem;
        }

        .warning-box {
            background-color: #ffebee;
            border-left: 5px solid var(--primary-color);
            padding: 15px 20px;
            margin-bottom: 20px;
            border-radius: 4px;
        }
        
        .warning-box strong {
            color: var(--primary-color);
        }

        /* Image Styling */
        .content-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 8px;
            margin: 30px auto;
            display: block;
            box-shadow: 0 6px 12px rgba(0,0,0,0.08);
        }

        /* Combined Footer Action Panel (Grid Layout for PC) */
        .footer-action-panel {
            margin: 50px 0 20px 0;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0,0,0,0.12);
            display: grid;
            grid-template-columns: 1fr 1fr;
            background-color: var(--secondary-color);
        }

        .download-wrapper {
            background-color: #e3f2fd;
            padding: 40px 30px;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .download-wrapper h3 {
            margin-top: 0;
            color: var(--secondary-color);
            font-size: 1.4rem;
        }

        .download-wrapper p {
            margin-bottom: 25px;
            color: var(--text-muted);
            font-size: 1.05rem;
        }

        .btn-download {
            display: inline-block;
            background-color: var(--primary-color);
            color: #ffffff;
            padding: 15px 30px;
            font-size: 1.1rem;
            font-weight: bold;
            border-radius: 6px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 6px rgba(211, 47, 47, 0.3);
            transition: all 0.3s ease;
            text-align: center;
        }

        .btn-download:hover {
            background-color: #b71c1c;
            color: #ffffff;
            text-decoration: none;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(211, 47, 47, 0.4);
        }

        .support-contact {
            padding: 40px 30px;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            color: #ffffff;
        }

        .support-contact h3 {
            color: #ffffff;
            margin-top: 0;
            font-size: 1.4rem;
        }

        .support-contact p {
            margin: 10px 0;
            font-size: 1.05rem;
        }

        .support-contact a {
            color: #90caf9;
            font-weight: bold;
        }

        .support-contact a:hover {
            color: #ffffff;
            text-decoration: none;
        }

        .support-contact small {
            color: #9e9e9e;
            display: block;
            margin-top: 20px;
            font-size: 0.9rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 15px;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .container { padding: 30px 15px; }
            .policy-section, .brand-intro { padding: 25px 20px; }
            .policy-header h1 { font-size: 1.8rem; }
            .brand-intro h2 { font-size: 1.5rem; }
            
            /* Stack the footer panel on mobile */
            .footer-action-panel {
                grid-template-columns: 1fr;
            }
            .download-wrapper {
                border-bottom: 2px solid #1a252f;
            }
        }
    