
        :root {
            --primary-color: #2563eb;
            --secondary-color: #3b82f6;
            --accent-color: #1e40af;
            --light-bg: #f8fafc;
            --text-dark: #1e293b;
            --text-light: #64748b;
            --border-color: #e2e8f0;
            --shadow-light: rgba(0, 0, 0, 0.05);
            --shadow-medium: rgba(0, 0, 0, 0.1);
        }
        
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            background-color: var(--light-bg);
            overflow-x: hidden;
        }
        
        .disclaimer-container {
            max-width: 1200px;
            margin: 0 auto;
            background-color: white;
            box-shadow: 0 10px 30px var(--shadow-light);
            border-radius: 16px;
            overflow: hidden;
            position: relative;
        }
        
        /* Animated header section */
        .header-section {
            /* background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%); */
            padding: 10px;
            text-align: center;
            color: 55497a;
            position: relative;
            overflow: hidden;
        }
        .headernew {
    background: #0f172a;
}
        .header-section::before {
            content: "";
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            top: -150px;
            right: -100px;
        }
        
        .header-section::after {
            content: "";
            position: absolute;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            bottom: -100px;
            left: -50px;
        }
        
        .header-section h1 {
            font-weight: 500;
            font-size: 39px;
            margin-bottom: 1rem;
            position: relative;
            z-index: 2;
            color: #55497a;
        }
        
        .header-section p {
            font-size: 16px;
            opacity: 0.9;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            color: #000;
        }
        
        /* Content section */
        .content-section {
            padding: 12px 26px;
        }
        
        @media (max-width: 768px) {
            .content-section {
                padding: 2rem 1.5rem;
            }
            .header-section h1 {
                font-size: 2.2rem;
            }
        }
        
        /* Disclaimer items styling */
        .disclaimer-item {
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            border-radius: 12px;
            /* border-left: 4px solid var(--primary-color); */
            background-color: #f8fafc;
            transition: all 0.3s ease;
            animation-duration: 0.6s;
        }
        
        .disclaimer-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px var(--shadow-medium);
            background-color: white;
        }
        
        .disclaimer-item h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #cf8c47;
            margin-bottom: 0.8rem;
        }
        
        .disclaimer-item p, .disclaimer-item ul {
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }
        
        .disclaimer-item ul {
            padding-left: 1.5rem;
        }
        
        .disclaimer-item li {
            margin-bottom: 0.5rem;
        }
        
        /* Special highlighting for important items */
        .important-item {
            border-left-color: #ef4444;
            background-color: #fef2f2;
        }
        
        .important-item h3 {
            color: #dc2626;
        }
        
        /* Contact info styling */
        .contact-info {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            border-radius: 12px;
            padding: 1.5rem;
            margin: 2.5rem 0;
        }
        
        .contact-info h4 {
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .contact-details div {
            margin-bottom: 0.8rem;
        }
        
        .contact-details i {
            color: var(--primary-color);
            margin-right: 10px;
            width: 20px;
        }
        
        /* Link styling */
        a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.2s;
        }
        
        a:hover {
            color: var(--accent-color);
            text-decoration: underline;
        }
        
        /* Footer section */
        .footer-section {
            background-color: #1e293b;
            color: #cbd5e1;
            padding: 2.5rem;
            text-align: center;
            border-radius: 0 0 16px 16px;
        }
        
        .footer-section p {
            margin-bottom: 0.5rem;
        }
        
        .last-updated {
            font-size: 0.9rem;
            color: #94a3b8;
            margin-top: 1.5rem;
        }
        
        /* Animation classes */
        .fade-in {
            animation-name: fadeIn;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* Scroll animation trigger */
        .animate-on-scroll {
            opacity: 1;
            transform: translateY(30px);
            transition: opacity 0.6s, transform 0.6s;
        }
        
        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }
    