        /* Main Content Section */
        .content-section {
            padding: 100px 0 80px 0;
            flex-grow: 1;
        }

        /* Hero Header Style */
        .page-hero {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        .page-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 5px;
            background: linear-gradient(180deg, #ffffff 0%, #a0a0a0 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 10px 30px rgba(0,0,0,0.5);
            letter-spacing: 2px;
        }
        
        .page-subtitle {
            color: #FFC107;
            font-size: 1.1rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 700;
            position: relative;
            display: inline-block;
            padding: 0 20px;
        }
        
        .page-subtitle::before, .page-subtitle::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 40px;
            height: 2px;
            background: linear-gradient(90deg, transparent, #FFC107);
        }
        .page-subtitle::before { right: 100%; }
        .page-subtitle::after { left: 100%; background: linear-gradient(90deg, #FFC107, transparent); }

        /* Text Box Style (Main) - Cyberpunk/Tech Panel */
        .content-box {
            background: linear-gradient(145deg, rgba(20, 20, 20, 0.95), rgba(10, 10, 10, 0.98));
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 4px;
            padding: 50px;
            margin-bottom: 50px;
            position: relative;
            box-shadow: 0 20px 50px rgba(0,0,0,0.6);
            backdrop-filter: blur(10px);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .content-box:hover {
            transform: translateY(-2px);
            box-shadow: 0 30px 60px rgba(0,0,0,0.8);
            border-color: rgba(255, 193, 7, 0.2);
        }

        /* Decorative Corners */
        .corner-accent {
            position: absolute;
            width: 15px;
            height: 15px;
            border: 2px solid #FFC107;
            transition: all 0.4s ease;
            opacity: 0.7;
        }
        
        .tl { top: -1px; left: -1px; border-right: none; border-bottom: none; }
        .tr { top: -1px; right: -1px; border-left: none; border-bottom: none; }
        .bl { bottom: -1px; left: -1px; border-right: none; border-top: none; }
        .br { bottom: -1px; right: -1px; border-left: none; border-top: none; }

        .content-box:hover .corner-accent {
            width: 30px; height: 30px;
            box-shadow: 0 0 15px rgba(255, 193, 7, 0.5);
            opacity: 1;
        }

        /* Typography Inside Box */
        .policy-update-date {
            font-size: 0.9rem;
            color: #888;
            font-weight: 700;
            margin-bottom: 30px;
            border-bottom: 1px solid #333;
            padding-bottom: 15px;
            display: block;
        }

        .policy-section-title {
            color: #FFC107;
            font-size: 1.4rem;
            font-weight: 700;
            margin-top: 30px;
            margin-bottom: 15px;
            text-shadow: 0 0 10px rgba(255, 193, 7, 0.2);
        }

        .content-box p {
            font-size: 1.05rem;
            line-height: 1.8;
            color: #ccc;
            margin-bottom: 15px;
            text-align: justify;
        }
                @media (max-width: 768px) {
            .page-title { font-size: 2.2rem; }
            .content-box { padding: 30px 20px; }
        }
