        :root {
            --primary-blue: #002B49;
            --accent-cyan: #0096D6;
            --bg-light: #F8F9FA;
            --text-dark: #1E293B;
        }

        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            color: var(--text-dark);
            background-color: var(--bg-light);
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        .bg-primary-custom { background-color: var(--primary-blue) !important; }
        .text-primary-custom { color: var(--primary-blue) !important; }
        .text-accent { color: var(--accent-cyan) !important; }
        
        .btn-accent {
            background-color: var(--accent-cyan);
            color: white;
            font-weight: 600;
            padding: 10px 20px;
            border-radius: 6px;
            border: none;
            transition: background-color 0.2s;
        }
        .btn-accent:hover {
            background-color: #007bb5;
            color: white;
        }

        /* Secciones */
        .hero-section {
            background: linear-gradient(135deg, #002B49 0%, #0B2545 100%);
            color: white;
            padding: 100px 0 80px 0;
        }

        .directory-card {
            border: 1px solid #e2e8f0;
            border-radius: 10px;
            background: white;
            height: 100%;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .directory-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
            border-color: var(--accent-cyan);
        }
        
        .directory-icon {
            font-size: 2rem;
            color: var(--accent-cyan);
            margin-bottom: 15px;
        }

        /* Espacios Publicitarios Nativos */
        .ad-slot-native {
            background-color: #e9ecef;
            border: 1px dashed #ced4da;
            color: #6c757d;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 120px;
            margin: 2rem 0;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Sección de Confianza y Legal */
        .trust-section {
            background-color: white;
            border-top: 4px solid var(--accent-cyan);
            padding: 60px 0;
        }
        .badge-indecopi {
            background-color: #f1f5f9;
            border: 1px solid #cbd5e1;
            padding: 15px 20px;
            border-radius: 8px;
            font-size: 0.95rem;
            display: inline-block;
        }