        /* Page-specific layout CSS (restored from es/sobre-deobank.html) */
        .page-hero {
            padding-top: calc(var(--navbar-height) + var(--disclaimer-height) + 60px);
            padding-bottom: 40px;
            text-align: center;
            background: radial-gradient(circle at center, rgba(204, 255, 0, 0.1) 0%, transparent 60%);
        }

        .page-title {
            font-size: clamp(32px, 5vw, 64px);
            font-weight: 700 !important;
            margin-bottom: 24px;
            color: var(--white);
        }

        .highlight {
            color: var(--lime-green);
        }

        .page-subtitle {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.7);
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section {
            padding: 60px 20px;
        }

        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
            box-sizing: border-box;
        }

        .content-block {
            margin-bottom: 40px;
        }

        .content-title {
            font-size: 32px;
            color: var(--lime-light);
            margin-bottom: 24px;
            font-family: var(--font-display);
        }

        .content-text {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 20px;
            text-align: justify;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .feature-item {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 30px;
            border-radius: 16px;
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            border-color: var(--lime-green);
            transform: translateY(-5px);
        }

        .feature-item h3 {
            color: var(--lime-green);
            margin-bottom: 12px;
            font-size: 20px;
        }

        .feature-item p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
        }

        .btn-primary {
            display: inline-block;
            background: var(--lime-green);
            color: var(--black);
            padding: 16px 40px;
            border-radius: 50px;
            font-weight: 700 !important;
            margin-top: 20px;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background: var(--bright-green);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0, 255, 136, 0.2);
        }

        .footer {
            background: var(--near-black);
            padding: 60px 20px 30px;
            border-top: 1px solid rgba(199, 241, 96, 0.1);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
        }

        .footer-section h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: var(--lime-green);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
        }

        .footer-links a:hover {
            color: var(--lime-green);
        }

        .disclaimer {
            background: rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: 8px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
            line-height: 1.6;
            margin-bottom: 30px;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
        }

        .redirect-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(5px);
            z-index: 10000;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .redirect-modal.active {
            display: flex;
            opacity: 1;
        }

        .redirect-content {
            background: #1a1a1a;
            border: 1px solid rgba(204, 255, 0, 0.2);
            padding: 32px;
            border-radius: 16px;
            max-width: 440px;
            width: 90%;
            text-align: center;
        }
