/* Banner Section */
        .ado-banner-section {
            position: relative;
            min-height: 400px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .ado-banner-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        .ado-banner-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 40%);
            z-index: 2;
        }

        .ado-banner-content {
            position: relative;
            z-index: 3;
            color: var(--white);
            padding: 0 20px;
            max-width: 1200px;
            width: 100%;
        }

        .ado-banner-title {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 10px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .ado-banner-subtitle {
            font-size: 24px;
            font-weight: 400;
            opacity: 0.9;
        }

        


        /* Main Content Section */
        .ado-main-content {
            padding: 40px 20px;
            background-color: var(--white);
        }

        .ado-content-container {
            max-width: 1200px;
            margin: 30px auto;
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 30px;
        }

        /* Sticky Sidebar Styles */
        .ado-sidebar {
            background: var(--white);
            border-radius: 16px;
            box-shadow: var(--card-shadow);
            overflow: hidden;
            height: fit-content;
            position: sticky;
            top: 90px;
        }

        .ado-sidebar-menu {
            padding: 20px;
        }

        .ado-sidebar-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 16px;
            border-radius: 8px;
            margin-bottom: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            color: var(--text-dark);
        }

        .ado-sidebar-item:hover {
            background: var(--bg-light);
            transform: translateX(5px);
        }

        .ado-sidebar-item.active {
            background: var(--secondary-color);
            color: var(--white);
        }

        .ado-sidebar-icon {
            font-size: 24px;
        }

        .ado-sidebar-text {
            font-size: 15px;
            font-weight: 500;
        }

        /* Content Section Styles */
        .ado-content-section {
            background: var(--white);
            border-radius: 16px;
            box-shadow: var(--card-shadow);
            padding: 30px;
            margin-bottom: 30px;
            scroll-margin-top: 90px;
        }

        .ado-content-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 24px;
            padding-bottom: 16px;
            border-bottom: 1px solid var(--border-color);
            flex-wrap: wrap;
            gap: 20px;
        }

        .ado-content-title {
            font-size: 24px;
            font-weight: 600;
            color: var(--secondary-color);
            line-height: 1.2;
        }

        .ado-content-subtitle {
            font-size: 16px;
            color: var(--text-light);
            max-width: 400px;
        }

        .ado-content-body {
            font-size: 16px;
            line-height: 1.7;
            color: var(--text-dark);
        }

        .ado-content-body h3 {
            font-size: 22px;
            font-weight: 700;
            color: var(--primary-color);
            margin: 30px 0 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid rgba(36, 92, 61, 0.1);
        }

        .ado-content-body h4 {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-dark);
            margin: 20px 0 10px;
        }

        .ado-content-body p {
            margin-bottom: 15px;
        }

        .ado-content-body ul {
            margin: 15px 0 15px 25px;
        }

        .ado-content-body li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 10px;
        }

        .ado-content-body li::before {
            content: "•";
            color: var(--secondary-color);
            font-weight: bold;
            display: inline-block;
            position: absolute;
            left: -15px;
        }

        .info-box {
            background-color: rgba(36, 92, 61, 0.05);
            border-left: 4px solid var(--primary-color);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }

        .warning-box {
            background-color: rgba(210, 41, 41, 0.05);
            border-left: 4px solid var(--secondary-color);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }

        .tip-box {
            background-color: rgba(59, 130, 246, 0.05);
            border-left: 4px solid #3b82f6;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }

        .tip-box h4 {
            color: #3b82f6;
            margin-top: 0;
        }

        .info-box h4 {
            color: var(--primary-color);
            margin-top: 0;
        }

        .warning-box h4 {
            color: var(--secondary-color);
            margin-top: 0;
        }

        .process-steps {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 25px 0;
        }

        .process-step {
            flex: 1;
            min-width: 200px;
            background-color: var(--bg-light);
            border-radius: 8px;
            padding: 15px;
            text-align: center;
            position: relative;
        }

        .process-step-number {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
            height: 30px;
            background-color: var(--secondary-color);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

        .process-step h4 {
            margin-top: 10px;
            color: var(--secondary-color);
        }

        .rights-responsibilities {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin: 25px 0;
        }

        .rights-box, .responsibilities-box {
            background-color: var(--bg-light);
            border-radius: 8px;
            padding: 20px;
        }

        .rights-box {
            border-top: 4px solid #3b82f6;
        }

        .responsibilities-box {
            border-top: 4px solid var(--secondary-color);
        }

        .reference {
            font-style: italic;
            color: var(--text-light);
            font-size: 14px;
            margin-top: 30px;
            padding-top: 15px;
            border-top: 1px solid var(--border-color);
        }

        .highlight {
            font-weight: 600;
            color: var(--secondary-color);
        }

        /* Action Buttons */
        .action-buttons {
            display: flex;
            gap: 20px;
            margin-top: 30px;
        }

        .action-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 16px;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            min-width: 160px;
        }

        .action-button i {
            margin-right: 8px;
        }

        .green-button {
            background-color: var(--primary-color);
            color: var(--white);
        }

        .green-button:hover {
            background-color: #1a432d;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(36, 92, 61, 0.3);
        }

        .red-button {
            background-color: var(--secondary-color);
            color: var(--white);
        }

        .red-button:hover {
            background-color: #b01e1e;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(210, 41, 41, 0.3);
        }

        /* Documents Section Styles */
        .ado-documents-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 24px;
            margin-top: 24px;
        }

        .ado-document-card {
            background: var(--white);
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
            border: 1px solid var(--border-color);
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .ado-document-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
            border-color: var(--primary-color);
        }

        .ado-document-header {
            padding: 24px;
            background: linear-gradient(135deg, #3e3bf6 0%, #6360fa 100%);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .ado-document-header::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .ado-document-card:hover .ado-document-header::after {
            opacity: 1;
        }

        .ado-document-title {
            font-size: 22px;
            color: var(--white) !important;
            font-weight: 700;
            margin-bottom: 5px;
            position: relative;
            z-index: 1;
            line-height: 1.2;
        }

        .ado-document-body {
            padding: 24px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .ado-document-description {
            font-size: 15px;
            color: var(--text-light);
            line-height: 1.5;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .ado-document-footer {
            display: flex;
            justify-content: flex-end;
            align-items: flex-end;
            padding: 0 24px 20px;
        }

        .ado-document-download {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            background: var(--secondary-color);
            color: var(--white);
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
            min-width: 140px;
            justify-content: center;
        }

        .ado-document-download:hover {
            background: #b50101;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(210, 41, 41, 0.3);
        }

        .ado-document-download i {
            font-size: 16px;
            color: var(--white);
        }

        /* Links Section Styles */
        .ado-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 24px;
            margin-top: 24px;
        }

        .ado-link-card {
            background: var(--white);
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .ado-link-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
            border-color: var(--secondary-color);
        }

        .ado-link-header {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 20px 20px 0;
        }

        .ado-link-icon {
            width: 56px;
            height: 56px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .ado-link-card:hover .ado-link-icon {
            transform: scale(1.05);
        }

        .ado-link-icon svg {
            width: 28px;
            height: 28px;
        }

        .ado-link-content {
            padding: 0 20px 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .ado-link-title {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .ado-link-description {
            font-size: 15px;
            color: var(--text-light);
            line-height: 1.5;
            margin-bottom: 16px;
            flex-grow: 1;
        }

        .ado-link-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto;
            padding-top: 16px;
            border-top: 1px solid var(--border-color);
        }

        .ado-link-date {
            font-size: 13px;
            color: var(--text-light);
            font-weight: 500;
        }

        .ado-link-visit {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            background: var(--secondary-color);
            color: var(--white);
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .ado-link-visit:hover {
            background: #b01e1e;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(210, 41, 41, 0.3);
        }

        .ado-link-visit i {
            font-size: 14px;
            transition: transform 0.3s ease;
        }

        .ado-link-visit:hover i {
            transform: translateX(3px);
        }

        /* Icon colors for each organization */
        .wada-icon {
            background: linear-gradient(135deg, #0055a4 0%, #00a0e3 100%);
        }

        .ioc-icon {
            background: linear-gradient(135deg, #0085c7 0%, #00a0e3 100%);
        }

        .boa-icon {
            background: linear-gradient(135deg, #245c3d 0%, #3a8e5a 100%);
        }

        .mys-icon {
            background: linear-gradient(135deg, #d62929 0%, #e63946 100%);
        }

        .sadrado-icon {
            background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background-color: white;
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
                padding: 20px 0;
                height: calc(100vh - 70px);
                overflow-y: auto;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-item {
                margin: 15px 0;
            }
            
            .nav-link {
                height: auto;
                padding: 10px 0;
            }
            
            .mobile-menu-toggle {
                display: flex;
            }
            
            .mega-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                border-top: none;
                background-color: #f8f9fa;
                margin-top: 10px;
                display: none;
            }
            
            .mega-menu-trigger.active .mega-menu {
                display: block;
            }
            
            .mega-menu-content {
                flex-direction: column;
                padding: 20px;
            }
            
            .mega-menu-column {
                padding: 10px 0;
                min-width: auto;
            }
        }

        @media (max-width: 768px) {
            .ado-content-container {
                grid-template-columns: 1fr;
            }

            .ado-sidebar {
                position: static;
                margin-bottom: 20px;
            }

            .ado-banner-title {
                font-size: 32px;
            }

            .ado-banner-subtitle {
                font-size: 18px;
            }

            .ado-content-title {
                font-size: 28px;
            }

            .ado-documents-grid,
            .ado-links-grid {
                grid-template-columns: 1fr;
            }

            .action-buttons {
                flex-direction: column;
            }
            
            .action-button {
                width: 100%;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
        }

        @media (max-width: 576px) {
            .ado-banner-title {
                font-size: 24px;
            }

            .ado-banner-subtitle {
                font-size: 16px;
            }

            .ado-content-title {
                font-size: 24px;
            }
        }