html, body {
            overflow: auto !important;
            overflow-y: auto !important;
            height: auto !important;
            max-height: none !important;
            color: var(--text-charcoal, #2C2A29);
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            padding: 0;
            margin: 0;
            
            background: linear-gradient(rgba(250, 248, 245, 0.85), rgba(250, 248, 245, 0.85)), 
                        url('assets/pold.webp') no-repeat center center fixed;
            background-size: cover;
        }
        
        .info-wrapper {
            padding: 20px;
            box-sizing: border-box;
            width: 100%;
        }

        .info-container {
            max-width: 600px;
            margin: 40px auto 50px auto;
            background: rgba(255, 255, 255, 0.96);
            padding: 30px;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            width: 100%;
            box-sizing: border-box;
            backdrop-filter: blur(4px);
        }

        .logo-small {
            display: block;
            max-width: 200px;
            margin: 0 auto 20px auto;
        }
        
        h1 {
            color: var(--sinilill-blue, #4F77AA);
            margin-top: 0;
            font-size: 1.8rem;
            font-weight: bold;
            text-align: center;
        }
        
        h2 {
            font-size: 1.2rem;
            color: var(--text-charcoal, #2C2A29);
            margin-top: 28px;
            border-left: 4px solid var(--wheat-gold, #E5A93C);
            padding-left: 12px;
            font-weight: 600;
        }
        
        p, li {
            line-height: 1.6;
            font-size: 0.95rem;
            color: #4a4a4a;
        }
        
        ul {
            padding-left: 20px;
            margin-bottom: 15px;
        }
        
        li {
            margin-bottom: 8px;
        }
        
        .badge {
            background: #E8F0FE;
            color: #1A73E8;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: bold;
            display: inline-block;
            margin-bottom: 5px;
        }

        .badge-policy {
            background: #E6F4EA;
            color: #137333;
        }

        .badge-warning {
            background: #FFF9E6;
            color: #B27B00;
            border: 1px solid #FFE0B2;
        }

        .disclaimer-box {
            background: #FFF5F5;
            border: 1px solid #FFDADA;
            padding: 15px;
            border-radius: 12px;
            margin-top: 25px;
            font-size: 0.88rem;
            color: #C62828;
            line-height: 1.4;
        }
        
        .back-btn-container {
            margin-top: 35px;
            text-align: center;
        }
        
        .back-btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--sinilill-blue, #4F77AA);
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            transition: opacity 0.2s;
            box-shadow: 0 2px 6px rgba(79, 119, 170, 0.2);
        }
        
        .back-btn:hover {
            opacity: 0.9;
        }

        footer {
            margin-top: 35px;
            text-align: center;
            font-size: 0.85rem;
            color: #777;
            border-top: 1px solid #EEE;
            padding-top: 20px;
        }

        footer a { color: var(--sinilill-blue, #4F77AA); text-decoration: none; }
