﻿        /* Hero Section */
        .disclaimer-hero {
            background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #312e81 100%);
            color: white;
            padding: 120px 20px 80px;
            position: relative;
            overflow: hidden;
            min-height: 50vh;
            display: flex;
            align-items: center;
        }
        
        .disclaimer-hero::before {
            content: '';
            position: absolute;
            top: 25%;
            left: 25%;
            width: 256px;
            height: 256px;
            background: rgba(59, 130, 246, 0.1);
            border-radius: 50%;
            filter: blur(100px);
        }
        
        .disclaimer-hero::after {
            content: '';
            position: absolute;
            bottom: 25%;
            right: 25%;
            width: 384px;
            height: 384px;
            background: rgba(139, 92, 246, 0.1);
            border-radius: 50%;
            filter: blur(100px);
        }
        
        .hero-content {
            max-width: 1280px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 20px;
            background: linear-gradient(to right, #fff, #bfdbfe, #a5f3fc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-divider {
            height: 4px;
            width: 96px;
            background: linear-gradient(to right, #3b82f6, #8b5cf6);
            margin: 0 auto 30px;
            border-radius: 2px;
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            color: #bfdbfe;
            margin-bottom: 30px;
            font-weight: 300;
            line-height: 1.6;
        }
        
        .hero-meta {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            padding: 25px;
            max-width: 450px;
            margin: 0 auto;
        }
        
        .meta-item {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .meta-item i {
            font-size: 1.25rem;
            color: #93c5fd;
        }
        
        /* Content Section */
        .content-section {
            padding: 80px 20px;
            background: linear-gradient(to bottom, #fff, #f8fafc);
        }
        
        .content-container {
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .content-card {
            background: white;
            border-radius: 24px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            border: 1px solid #e2e8f0;
            padding: 50px;
        }
        
        .intro-box {
            background: linear-gradient(135deg, #eff6ff, #dbeafe);
            border-radius: 16px;
            padding: 25px;
            margin-bottom: 50px;
        }
        
        .intro-box p {
            color: #475569;
            line-height: 1.8;
            margin: 0;
        }
        
        /* Section Styles */
        .disclaimer-section {
            margin-bottom: 50px;
        }
        
        .section-header {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 25px;
            padding-bottom: 12px;
            border-bottom: 2px solid #e2e8f0;
        }
        
        .bullet-item {
            display: flex;
            gap: 15px;
            margin-bottom: 25px;
        }
        
        .bullet-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            margin-top: 8px;
            flex-shrink: 0;
        }
        
        .bullet-dot.blue {
            background: #2563eb;
        }
        
        .bullet-dot.green {
            background: #16a34a;
        }
        
        .bullet-dot.purple {
            background: #9333ea;
        }
        
        .bullet-dot.indigo {
            background: #4f46e5;
        }
        
        .bullet-content {
            flex: 1;
            color: #475569;
            line-height: 1.8;
        }
        
        /* IP Box */
        .ip-box {
            background: linear-gradient(135deg, #f8fafc, #f1f5f9);
            border-radius: 16px;
            padding: 25px;
        }
        
        .ip-box p {
            color: #475569;
            line-height: 1.8;
            margin: 0;
        }
        
        /* Contact Box */
        .contact-box {
            background: linear-gradient(135deg, #f8fafc, #f1f5f9);
            border-radius: 16px;
            padding: 35px;
            text-align: center;
        }
        
        .contact-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 15px;
        }
        
        .contact-box > p {
            color: #475569;
            margin-bottom: 25px;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
            max-width: 500px;
            margin: 0 auto;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }
        
        .contact-icon {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
        }
        
        .contact-icon.blue {
            color: #2563eb;
        }
        
        .contact-icon.green {
            color: #16a34a;
        }
        
        .contact-details {
            text-align: left;
        }
        
        .contact-label {
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 3px;
        }
        
        .contact-value {
            color: #475569;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .contact-value.blue {
            color: #2563eb;
        }
        
        .contact-value.green {
            color: #16a34a;
        }
        
        .contact-value:hover {
            opacity: 0.8;
        }
        
        .contact-note {
            font-size: 0.875rem;
            color: #64748b;
            margin-top: 2px;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.125rem;
            }
            
            .content-card {
                padding: 30px 20px;
            }
            
            .section-header {
                font-size: 1.25rem;
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
            }
        }
