/* Disclaimer Page Specific Styles */
        .disclaimer-page-wrapper {
            padding-top: 180px;
            min-height: 100vh;
            background-color: var(--light-bg);
        }

        body.dark-mode .disclaimer-page-wrapper {
            background-color: #121212;
        }

        .disclaimer-main {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px 60px;
        }

        .page-header-section {
            text-align: center;
            margin-bottom: 3rem;
            padding: 3rem 2rem;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            border-radius: 20px;
            box-shadow: var(--shadow);
            color: var(--white);
        }

        .page-header-section h1 {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            font-weight: 800;
            text-transform: uppercase;
            margin-bottom: 0.5rem;
            color: var(--white);
        }

        .page-header-section p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 1rem;
        }

        .last-updated-badge {
            display: inline-block;
            background-color: rgba(255, 255, 255, 0.2);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        /* Table of Contents */
        .toc-container {
            background-color: var(--white);
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 2.5rem;
            box-shadow: var(--shadow);
            border-left: 5px solid var(--primary-color);
        }

        body.dark-mode .toc-container {
            background-color: #1e1e1e;
        }

        .toc-container h3 {
            font-family: var(--font-heading);
            color: var(--primary-color);
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1.25rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .toc-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .toc-list li {
            margin-bottom: 0.75rem;
        }

        .toc-list a {
            color: var(--text-light);
            text-decoration: none;
            transition: var(--transition);
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .toc-list a::before {
            content: '▸';
            color: var(--primary-color);
            font-size: 1.2rem;
        }

        .toc-list a:hover {
            color: var(--primary-color);
            padding-left: 8px;
        }

        /* Content Sections */
        .content-section {
            background-color: var(--white);
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 1.5rem;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-top: 3px solid transparent;
        }

        body.dark-mode .content-section {
            background-color: #1e1e1e;
        }

        .content-section:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
            border-top-color: var(--primary-color);
        }

        .content-section h2 {
            font-family: var(--font-heading);
            color: var(--primary-color);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.25rem;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid var(--border-color);
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .content-section h2 .section-number {
            background-color: var(--primary-color);
            color: var(--white);
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            font-weight: 700;
            flex-shrink: 0;
        }

        .content-section h3 {
            font-family: var(--font-heading);
            color: var(--secondary-color);
            font-size: 1.2rem;
            font-weight: 600;
            margin: 1.5rem 0 0.75rem;
        }

        body.dark-mode .content-section h3 {
            color: #e0e0e0;
        }

        .content-section p {
            color: var(--text-light);
            margin-bottom: 1rem;
            line-height: 1.8;
        }

        .content-section ul {
            margin-left: 1.5rem;
            margin-bottom: 1rem;
            color: var(--text-light);
        }

        .content-section li {
            margin-bottom: 0.5rem;
            line-height: 1.6;
        }

        .content-section strong {
            color: var(--secondary-color);
            font-weight: 600;
        }

        body.dark-mode .content-section strong {
            color: #e0e0e0;
        }

        .content-section a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
        }

        .content-section a:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }

        /* Warning Box */
        .warning-box {
            background: linear-gradient(135deg, #fff3e0, #ffe0b2);
            border-left: 5px solid #ff9800;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 1.5rem 0;
        }

        body.dark-mode .warning-box {
            background: linear-gradient(135deg, #3d2a10, #2a1f10);
            border-left-color: #ff9800;
        }

        .warning-box i {
            color: #ff9800;
            font-size: 1.5rem;
            margin-right: 0.75rem;
        }

        .warning-box-content {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .warning-box p {
            margin: 0;
            color: var(--text-color);
            font-weight: 500;
        }

        body.dark-mode .warning-box p {
            color: #e0e0e0;
        }

        /* Info Box */
        .info-box {
            background: linear-gradient(135deg, #e3f2fd, #bbdefb);
            border-left: 5px solid #2196f3;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 1.5rem 0;
        }

        body.dark-mode .info-box {
            background: linear-gradient(135deg, #1a237e, #0d47a1);
            border-left-color: #64b5f6;
        }

        .info-box i {
            color: #2196f3;
            font-size: 1.5rem;
            margin-right: 0.75rem;
        }

        body.dark-mode .info-box i {
            color: #64b5f6;
        }

        .info-box-content {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .info-box p {
            margin: 0;
            color: var(--text-color);
            font-weight: 500;
        }

        body.dark-mode .info-box p {
            color: #e0e0e0;
        }

        /* Important Notice Box */
        .important-box {
            background: linear-gradient(135deg, #ffebee, #ffcdd2);
            border-left: 5px solid #f44336;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 1.5rem 0;
        }

        body.dark-mode .important-box {
            background: linear-gradient(135deg, #3e1a1a, #5c1a1a);
            border-left-color: #ef5350;
        }

        .important-box i {
            color: #f44336;
            font-size: 1.5rem;
            margin-right: 0.75rem;
        }

        body.dark-mode .important-box i {
            color: #ef5350;
        }

        .important-box-content {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .important-box p {
            margin: 0;
            color: var(--text-color);
            font-weight: 500;
        }

        body.dark-mode .important-box p {
            color: #e0e0e0;
        }

        /* Contact Box */
        .contact-box {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: var(--white);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            margin: 2rem 0;
            box-shadow: var(--shadow);
        }

        .contact-box h4 {
            font-family: var(--font-heading);
            color: var(--white);
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .contact-box p {
            color: rgba(255, 255, 255, 0.95);
            margin: 0.5rem 0;
        }

        .contact-box i {
            color: var(--white);
            margin-right: 0.5rem;
        }

        /* Contact box dark mode - ensure all elements are white */
        body.dark-mode .contact-box h4 {
            color: #ffffff !important;
        }

        body.dark-mode .contact-box p {
            color: rgba(255, 255, 255, 0.95) !important;
        }

        body.dark-mode .contact-box i {
            color: #ffffff !important;
        }

        /* Footer */
        .disclaimer-footer {
            background-color: var(--secondary-color);
            border-top: 1px solid var(--border-color);
            padding: 2rem 0;
            text-align: center;
            margin-top: 3rem;
        }

        .disclaimer-footer p {
            color: var(--text-lighter);
            margin-bottom: 0.5rem;
        }

        .disclaimer-footer a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
        }

        .disclaimer-footer a:hover {
            color: var(--primary-light);
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 1rem;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .disclaimer-page-wrapper {
                padding-top: 150px;
            }

            .page-header-section {
                padding: 2rem 1.5rem;
            }

            .page-header-section h1 {
                font-size: 1.8rem;
            }

            .page-header-section p {
                font-size: 1rem;
            }

            .toc-container {
                padding: 1.5rem;
            }

            .content-section {
                padding: 1.5rem;
            }

            .content-section h2 {
                font-size: 1.3rem;
            }

            .content-section h2 .section-number {
                width: 30px;
                height: 30px;
                font-size: 0.9rem;
            }

            .warning-box-content,
            .info-box-content,
            .important-box-content {
                flex-direction: column;
            }

            .footer-links {
                flex-direction: column;
                gap: 0.75rem;
            }
        }

        @media (max-width: 480px) {
            .page-header-section h1 {
                font-size: 1.5rem;
            }

            .content-section {
                padding: 1.25rem;
            }

            .content-section h2 {
                font-size: 1.2rem;
            }

            .content-section h3 {
                font-size: 1.1rem;
            }

            .contact-box {
                padding: 1.5rem;
            }
        }

        /* Smooth scroll */
        html {
            scroll-behavior: smooth;
        }