        /* Reset básico para evitar estilos no deseados */
        body {
            margin: 0;
            padding: 0;
            background-color: #f8fafc; /* Fondo claro para toda la página */
            color: #333; /* Color de texto principal */
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.6;
        }
        
        /* Contenedor principal para centrar el contenido */
        .main-container {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }

        /* Estilos específicos para la sección del manual */
        .handbook-section {
            --primary-green: #27ae60;
            --dark-green: #219653;
            --primary-blue: #2980b9;
            --dark-blue: #1a6ca8;
            --text-dark: #1a3e72;
            --text-medium: #4a5568;
            
            background: white;
            padding: 3rem; /* Más espacio interno */
            border-radius: 16px;
            margin: 2rem 0; /* Más margen vertical */
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }

        .handbook-section::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: rgba(41, 128, 185, 0.05);
            border-radius: 50%;
            z-index: 0;
        }

        .handbook-section::after {
            content: '';
            position: absolute;
            bottom: -80px;
            left: -80px;
            width: 250px;
            height: 250px;
            background: rgba(39, 174, 96, 0.05);
            border-radius: 50%;
            z-index: 0;
        }

        .handbook-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 2.5rem; /* Más espacio debajo del encabezado */
            position: relative;
            z-index: 1;
        }

        .handbook-icon {
            background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
            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);
            color: white;
            font-size: 1.5rem;
        }

        .handbook-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-dark);
            margin: 0;
            position: relative;
            padding-bottom: 8px;
        }

        .handbook-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-green), var(--primary-blue));
            border-radius: 3px;
            transition: width 0.3s ease;
        }

        .handbook-header:hover .handbook-title::after {
            width: 100px;
        }

        .handbook-description {
            color: var(--text-medium);
            font-size: 1.1rem; /* Texto ligeramente más grande */
            line-height: 1.7;
            margin-bottom: 3rem; /* Más espacio debajo de la descripción */
            position: relative;
            z-index: 1;
            padding: 0 10px; /* Pequeño padding lateral */
        }

        .handbook-buttons {
            display: flex;
            gap: 20px; /* Más espacio entre botones */
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
            margin-top: 1.5rem; /* Espacio adicional arriba de los botones */
        }

        .handbook-button {
            display: inline-flex;
            align-items: center;
            padding: 1.2rem 2rem; /* Botones más grandes */
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem; /* Texto más grande en botones */
            transition: all 0.25s cubic-bezier(0.65, 0, 0.35, 1);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
            min-width: 220px; /* Botones más anchos */
            justify-content: center;
        }

        .handbook-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .handbook-button:hover::before {
            opacity: 1;
        }

        .carbon-button {
            background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
            color: white;
        }

        .carbon-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(39, 174, 96, 0.3);
        }

        .biodiversity-button {
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
            color: white;
        }

        .biodiversity-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(41, 128, 185, 0.3);
        }

        .button-icon {
            margin-right: 12px;
            font-size: 1.1rem;
        }

        .floating-shape {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(41, 128, 185, 0.08), rgba(39, 174, 96, 0.08));
            filter: blur(1px);
            z-index: 0;
            animation: float 15s infinite ease-in-out;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(10px, 15px) rotate(5deg); }
            50% { transform: translate(-5px, 20px) rotate(-5deg); }
            75% { transform: translate(15px, -10px) rotate(3deg); }
        }

        @media (max-width: 768px) {
            .main-container {
                padding: 0 15px;
                margin: 30px auto;
            }
            
            .handbook-section {
                padding: 2rem 1.5rem;
                margin: 1.5rem 0;
            }
            
            .handbook-title {
                font-size: 1.6rem;
            }
            
            .handbook-buttons {
                flex-direction: column;
                gap: 15px;
            }
            
            .handbook-button {
                width: 100%;
                padding: 1rem 1.5rem;
            }
            
            .handbook-description {
                font-size: 1rem;
                margin-bottom: 2.5rem;
            }
        }