
        :root {
            --primary: #0a2c5a;
            --secondary: #d4af37;
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
            --light-gray: #e9ecef;
            --white: #ffffff;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }

        [data-theme="dark"] {
            --primary: #1a4b8c;
            --light: #212529;
            --dark: #f8f9fa;
            --gray: #adb5bd;
            --light-gray: #343a40;
            --white: #2b3035;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
        }

        /* Page-specific styles */
        .adr-methods {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .method-card {
            background: var(--white);
            border-radius: 8px;
            box-shadow: var(--shadow);
            overflow: hidden;
            transition: var(--transition);
        }

        .method-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
        }

        .method-header {
            background: var(--primary);
            color: var(--white);
            padding: 1.5rem;
            position: relative;
        }

        .method-icon {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            font-size: 2rem;
            color: var(--secondary);
        }

        .method-body {
            padding: 1.5rem;
        }

        .method-list {
            list-style: none;
            margin-top: 1rem;
        }

        .method-list li {
            padding: 0.5rem 0;
            display: flex;
            align-items: flex-start;
        }

        .method-list li i {
            color: var(--secondary);
            margin-right: 0.8rem;
            margin-top: 0.3rem;
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            background: var(--white);
            box-shadow: var(--shadow);
            border-radius: 8px;
            overflow: hidden;
        }

        .comparison-table th,
        .comparison-table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid var(--light-gray);
        }

        .comparison-table th {
            background: var(--primary);
            color: var(--white);
        }

        .comparison-table tr:hover {
            background: var(--light-gray);
        }

        .case-study {
            background: var(--white);
            padding: 2rem;
            border-radius: 8px;
            box-shadow: var(--shadow);
            margin: 2rem 0;
        }

        .case-study h3 {
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .case-study .details {
            margin: 1rem 0;
            padding: 1rem;
            background: var(--light-gray);
            border-radius: 4px;
        }

        .process-steps {
            counter-reset: step;
            margin: 2rem 0;
        }

        .step {
            position: relative;
            padding: 1rem 1rem 1rem 3rem;
            margin-bottom: 1rem;
            background: var(--white);
            border-radius: 8px;
            box-shadow: var(--shadow);
        }

        .step::before {
            counter-increment: step;
            content: counter(step);
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            width: 30px;
            height: 30px;
            background: var(--secondary);
            color: var(--dark);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

        .legal-framework {
            background: var(--white);
            padding: 2rem;
            border-radius: 8px;
            box-shadow: var(--shadow);
            margin: 2rem 0;
        }

        .legal-framework h3 {
            color: var(--primary);
            margin: 1.5rem 0 1rem;
        }

        .legal-framework h3:first-child {
            margin-top: 0;
        }

        .advantages-limitations {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .advantages, .limitations {
            background: var(--white);
            padding: 2rem;
            border-radius: 8px;
            box-shadow: var(--shadow);
        }

        .advantages h3 {
            color: #28a745;
            margin-bottom: 1rem;
        }

        .limitations h3 {
            color: #dc3545;
            margin-bottom: 1rem;
        }

        .advantages .fas.fa-plus {
            color: #28a745;
        }

        .limitations .fas.fa-minus {
            color: #dc3545;
        }

        /* Footer Styles */
        footer {
            background-color: var(--primary);
            color: var(--white);
            padding: 2rem 1.5rem;
            margin-top: 2rem;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }

        .footer-section {
            flex: 1;
            min-width: 250px;
            margin-bottom: 1.5rem;
        }

        .footer-title {
            margin-bottom: 1rem;
            font-size: 1.2rem;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 30px;
            height: 2px;
            background-color: var(--secondary);
        }

        .footer-links {
            list-style: none;
        }

        .footer-link {
            padding: 0.4rem 0;
        }

        .footer-link a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-link a:hover {
            color: var(--secondary);
            padding-left: 0.5rem;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-link {
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--white);
            transition: var(--transition);
        }

        .social-link:hover {
            background: var(--secondary);
            transform: translateY(-3px);
        }

        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 40px;
            height: 40px;
            background: var(--secondary);
            color: var(--dark);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            opacity: 0;
            visibility: hidden;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        @media screen and (max-width: 768px) {
            .footer-content {
                flex-direction: column;
            }
            .footer-section {
                margin-bottom: 2rem;
            }
            .advantages-limitations {
                grid-template-columns: 1fr;
            }
        }
    
